插件com.smartbear.soapui:soapui-maven-plugin:4.6.1或其中一个依赖项无法解析:

时间:2014-08-06 10:47:04

标签: soapui

我使用Soap UI 5.0开源版本来测试REST服务。我使用Soap UI maven插件4.6.1通过maven运行我的SoapUI测试用例,它运行时没有错误。 但是现在,我在运行相同的测试用例时遇到了问题。以下是错误:

[错误]插件com.smartbear.soapui:soapui-maven-plugin:4.6.1或其中一个依赖项无法解析:找不到工件com.smartbear.soapui:soapui-maven-plugin:jar: 4.6.1 in nexus(http:// * :8380 / nexus / content / groups / public)

这是我在POM xml上的设置

<pluginRepository>
<id>SmartBearPluginRepository</id>
<url>http://www.soapui.org/repository/maven2/</url>
</pluginRepository>
<plugin>                                                                                                           
<groupId>com.smartbear.soapui</groupId>
<artifactId>soapui-maven-plugin</artifactId>
<version>4.6.1</version>                                                       
<inherited>false</inherited>                                                             
<configuration>                                                                
<junitReport>true</junitReport>                                                            
<exportAll>true</exportAll>                                                            
<outputFolder>target/surefire-reports</outputFolder>                                                             
<printReport>true</printReport>                                                            
<testFailIgnore>true</testFailIgnore>                                                            
</configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>                                                                            
<configuration>                                                                    
<projectFile>${basedir}/<DIR>/Project.xml</projectFile>                                                               
</configuration>
</execution>
</executions>
</plugin>     

我手动将插件罐和POM复制到本地maven存储库但没有运气。

你能告诉我这可能是什么问题吗? 我是否需要更新我的Maven Setting.xml ??? Soap UI maven插件4.6.1是否已被非许可用户限制?

0 个答案:

没有答案