如何 运行 SOAP ui 测试 maven 安装的一部分?

How to run SOAP ui tests part of maven install?

有没有办法 运行 SOAP UI tests 调用 maven install 的一部分,这意味着 maven install 将 运行 那些 SOAP 测试。

SoapUI 有一个 Maven plugin。使用 projectFile 参数,您可以将其指向现有的 SoapUI 项目。将其 test 目标绑定到 Maven 中的 verify 阶段,您应该可以开始了:

<executions>
  <execution>
    <phase>verify</phase>
    <goals>
      <goal>test</goal>
    </goals>
  </execution>
</executions>