Forum Discussion

Sandip's avatar
Sandip
New Contributor
14 years ago

Unable to download maven plugin

Here is my pom. I tried soapui and soaui-pro plugin. both failed to download.
Any help on this is appreciated. TIA.


[INFO] Unable to find resource 'eviware:maven-soapui-plugin:pom:2.5.1' in repository eviwarePluginRepository (http://www.eviware.com/repository/maven2/)


<plugins>
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<projectFile>soapui-project.xml</projectFile>
<host>http://127.0.0.1:8181</host>
<junitReport>true</junitReport>
</configuration>
<executions>
<execution>
<id>soapUI</id>
<!--Run as part of the test phase in the Maven lifecycle -->
<phase>test</phase>
<goals>
<!--Run the test phase of eviware:maven-soapui-plugin -->
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>eviwarePluginRepository</id>
<url>http://www.eviware.com/repository/maven2/</url>
</pluginRepository>
</pluginRepositories>

3 Replies