我有兩個不同的SoapUI測試項目,我想在構建過程中運行(我正在使用maven-soapui-plugin 3.6.1和Maven 3) 。 目前我所能做的只是執行一個項目(參見我的pom.xml文件)......假設我想執行2個SoapUI測試項目並控制它們的執行順序...... 這樣做的正確語法是什麼?Maven SoapUI插件 - 如何在Maven生命週期中執行2個SoapUI測試項目
我現在的pom.xml文件:
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<projectFile>${project.basedir}\src\test\resources\soapui\Web-Service-automatic-testing-soapui-project.xml</projectFile>
<outputFolder>${project.basedir}\src\test\resources\soapui\output</outputFolder>
<junitReport>true</junitReport>
</configuration>
<executions>
<execution>
<id>soapUI</id>
<!--Run as part of the test phase in the Maven lifecycle-->
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
我經歷了同樣的事情不是很久以前,我的問題和解決方案可以在這裏找到。一個重要的說明,我正在處理300 +服務。 http://stackoverflow.com/questions/9184862/soapui-maven-plugin-executing-multiple-projects/9245939#9245939 – 2012-04-03 15:41:01