Forum Discussion
Could you please share which Maven command you are using to run the test cases.
From the log, we can see that you are trying to hit SoapUI Pro dependencies -
com.smartbear.soapui:soapui-pro-maven-plugin:5.1.2:test
In case if it is PRO specific, you can post it in SoapUI NG forum or contact the Smartbear support team.
Thanks,
Kondasamy
Thank you for the response.
fixed the issue, pls find the below solution.
<Maven settings file Start >
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>......\.m2\repository</localRepository>
<offline>false</offline>
<pluginGroups>
<pluginGroup>org.sonatype.plugins</pluginGroup>
<pluginGroup>org.jvnet.hudson.tools</pluginGroup>
<pluginGroup>org.apache.maven.plugins</pluginGroup>
<pluginGroup>org.apache.maven.plugin</pluginGroup>
<pluginGroup>org.codehaus.mojo</pluginGroup>
</pluginGroups>
<!--<mirrors>
<mirror>
<id>artifactory</id>
<name>Artifactory</name>
<url>https://svn.Company.com</url>
<mirrorOf>*</mirrorOf>
</mirror>
</mirrors>-->
<servers>
<server>
<id>http://repo1.uhc.com/artifactory/repo</id>
<username>user</username>
<password>enptpwd</password>
</server>
</servers>
<profiles>
<profile>
<pluginRepositories>
<pluginRepository>
<id>SmartBearPluginRepository</id>
<url>http://www.soapui.org/repository/maven2/</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
</settings>
<Maven settings file End>
and there is no change in the pom.xml
- kondasamy9 years agoRegular Contributor
Glad that your problem is solved!
Thanks,
Kondasamy
Related Content
- 2 years ago
- 4 years ago