我试图从maven pom文件覆盖我的SoapUI项目的activeEnvironment属性。
<configuration>
<projectFile>....</projectFile>
<property>
<name>activeEnvironment</name>
<value>X_Sprint</value>
</property>
</configuration>
我正在使用soapUI pro和maven soapui插件5.0.0。如果文件中有任何错误,有人可以建议我
答案 0 :(得分:0)
Documentation表示配置应为:
<plugin>
<groupId>com.smartbear.soapui</groupId>
<artifactId>soapui-pro-maven-plugin</artifactId>
<version>5.0.0</version>
...
<configuration>
...
<projectProperties>
<value>message=Hello World!</value>
</projectProperties>
</configuration>
</plugin>