Forum Discussion

jmitch's avatar
14 years ago

Maven repo error

Hello all,

I hope someone can help me with my problem...

I am trying to configure Maven 2.2.1 with soapUI 4.0.1. I have set up my pom.xml as outlined in the online documentation. When I run 'mvn test -X' I get the following error:

Downloading: http://www.eviware.com/repository/maven ... in-2.3.pom
[DEBUG] Error transferring file: Server returned HTTP response code: 400 for URL: http://www.eviware.com/repository/maven ... in-2.3.pom

When I check the url above in my browser, I do in fact get a 404 Not found error. If I try the url for 2.2 instead of 2.3:

http://www.eviware.com/repository/maven ... in-2.2.pom

it works and I can access the pom.xml file. Why is maven using a url that does not work? How can I make it use the above url instead?


Here is the relevant part of my pom.xml file:

<pluginRepositories>
<pluginRepository>
<id>eviwarePluginRepository</id>
<name>Eviware Maven 2 Repository (for SoapUI)</name>
<url>http://www.eviware.com/repository/maven2/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

<build>
<plugins>
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-plugin</artifactId>
<version>4.0.0</version>
<executions>
<execution>
<id>APItest</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
</execution>
</executions>
<configuration>
<projectFile>src\test\soapui\API.xml</projectFile>
<outputFolder>src</outputFolder>
<junitReport>true</junitReport>
<printReport>false</printReport>
</configuration>
</plugin>
</plugins>
</build>


Many thanks!
No RepliesBe the first to reply