maven can not find 2.5.2-SNAPSHOT [message #1823546] |
Sat, 28 March 2020 15:54 |
Louis Detweiler Messages: 100 Registered: August 2017 |
Senior Member |
|
|
When trying to run RCPTT through maven I get the following error.
[ERROR] The project projectName:rcpttTests:1.0.0-SNAPSHOT (C:\Users\Greg\rcpttWorkspace\gov.nasa.arc.advocate.rcptt.tests\pom.xml) has 2 errors
[ERROR] Unresolveable build extension: Plugin org.eclipse.rcptt:rcptt-maven-plugin:2.5.2-SNAPSHOT or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.eclipse.rcptt:rcptt-maven-plugin:jar:2.5.2-SNAPSHOT: Could not transfer artifact org.eclipse.rcptt:rcptt-maven-plugin:pom:2.5.2-SNAPSHOT from/to rcptt-snapshots (https://repo.eclipse.org/content/repositories/rcptt-snapshots/): Received fatal alert: handshake_failure ->
This is my pom
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Change groupId, artifactId and version -->
<artifactId>rcpttTests</artifactId>
<groupId>projectName</groupId>
<version>1.0.0-SNAPSHOT</version>
<packaging>rcpttTest</packaging>
<!-- Change properies below to your values -->
<properties>
<autPath>${project.basedir}</autPath>
<skipTags>none</skipTags>
<rcptt-maven-version>2.5.2-SNAPSHOT</rcptt-maven-version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.rcptt</groupId>
<artifactId>rcptt-maven-plugin</artifactId>
<version>2.5.2-SNAPSHOT</version>
<extensions>true</extensions>
<configuration>
<aut>
<explicit>C:\Users\Greg\Desktop\AdvoCATE-0.22.0.202003261817-win32.win32.x86_64\AdvoCATE-0.22.0.202003261817</explicit>
</aut>
<runner>
<version>2.5.2-SNAPSHOT</version>
</runner>
<testOptions>
<execTimeout>18000</execTimeout>
<timeout>18000</timeout>
</testOptions>
<skipTags>
<skipTag>${skipTags}</skipTag>
</skipTags>
</configuration>
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>rcptt-snapshots</id>
<name>RCPTT Maven Snapshots repository</name>
<snapshots>
<updatePolicy>always</updatePolicy>
</snapshots>
<url>https://repo.eclipse.org/content/repositories/rcptt-snapshots/</url>
</pluginRepository>
<pluginRepository>
<id>rcptt-releases</id>
<name>RCPTT Maven repository</name>
<url>https://repo.eclipse.org/content/repositories/rcptt-releases/</url>
</pluginRepository>
</pluginRepositories>
</project>
Thanks.
|
|
|
Powered by
FUDForum. Page generated in 0.03909 seconds