使用maven和SoapUI插件进行自动SOAP测试

使用maven和SoapUI插件进行自动SOAP测试,maven,soap,soapui,Maven,Soap,Soapui,我正在尝试用Maven3自动化SOAP UI。我收到的问题是“无法下载”。下面是控制台中的错误 [错误]从存储库[local(/home/krishna/.m2/repository)、eviwarePluginRepository()、central解析插件“org.mortbay.jetty:jetty maven plugin”的版本时出错(http://repo.maven.apache.org/maven2)]:在任何插件库中都找不到插件->[帮助1] [错误] [错误]要查看错误的完

我正在尝试用Maven3自动化SOAP UI。我收到的问题是“无法下载”。下面是控制台中的错误

[错误]从存储库[local(/home/krishna/.m2/repository)、eviwarePluginRepository()、central解析插件“org.mortbay.jetty:jetty maven plugin”的版本时出错(http://repo.maven.apache.org/maven2)]:在任何插件库中都找不到插件->[帮助1] [错误] [错误]要查看错误的完整堆栈跟踪,请使用-e开关重新运行Maven。 [错误]使用-X开关重新运行Maven以启用完整调试日志记录。 [错误] [错误]有关错误和可能的解决方案的更多信息,请阅读以下文章: [错误][帮助1]“

为了执行它,我添加了以下内容

1) 添加了eviware和jetty的插件 2) 添加了插件存储库eviware存储库

以下是上述2个项目的pomy

如果我遗漏了什么,请告诉我

org.mortbay.jetty

<artifactId>jetty-maven-plugin</artifactId>
    <version>6.1.20</version>
    <configuration>
      <connectors>
        <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
          <port>8080</port>
          <maxIdleTime>60000</maxIdleTime>
        </connector>
      </connectors>
      <contextPath>/xyz-${project.version}</contextPath>
      <webApp>target/xyz-${project.version}.war</webApp>
      <stopKey>foo</stopKey>
      <stopPort>9999</stopPort>
    </configuration>
    <executions>
      <execution>
        <id>start-jetty</id>
        <phase>pre-integration-test</phase>
        <goals>
          <goal>run</goal>
        </goals>
        <configuration>
          <scanIntervalSeconds>0</scanIntervalSeconds>
          <daemon>true</daemon>
        </configuration>
      </execution>
      <execution>
        <id>stop-jetty</id>
        <phase>post-integration-test</phase>
        <goals>
          <goal>stop</goal>
        </goals>
      </execution>
    </executions>
  </plugin> 
<plugin>
    <groupId>eviware</groupId>
    <artifactId>maven-soapui-plugin</artifactId>
    <version>3.0</version>
    <configuration>
      <projectFile>${basedir}/src/main/resources/soapui/project.xml</projectFile>
      <printReport>true</printReport>
    </configuration>
    <executions>
      <execution>
        <id>soap-integration-test</id>
        <phase>integration-test</phase>
        <goals>
          <goal>test</goal>
        </goals>
      </execution>
    </executions>
  </plugin>
jetty maven插件 6.1.20 8080 60000 /xyz-${project.version} target/xyz-${project.version}.war 福 9999 起动码头 预集成测试 跑 0 真的 停靠码头 整合后测试 停止 电子设备 maven soapui插件 3 ${basedir}/src/main/resources/soapui/project.xml 真的 soap集成测试 集成测试 测试
尝试在settings.xml(.m2/)中添加以下内容:


安全代理
真的
http
172.18.65.22
80

这是代理问题。无法连接到代理。
 <proxies>
   <proxy>
     <id>myproxy</id>
     <active>true</active>
     <protocol>http</protocol>
     <host>172.18.65.22</host>
     <port>80</port>
  </proxy>
</proxies>