无法使用maven pom覆盖SOAPUI中的activeEnvironment

时间:2015-08-12 02:23:48

标签: java maven soapui pom.xml

我试图从maven pom文件覆盖我的SoapUI项目的activeEnvironment属性。

<configuration>
<projectFile>....</projectFile>
<property>
  <name>activeEnvironment</name>
  <value>X_Sprint</value>
 </property>
</configuration>

我正在使用soapUI pro和maven soapui插件5.0.0。如果文件中有任何错误,有人可以建议我

1 个答案:

答案 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>