1
我的soapui項目由多個項目文件組成。 Maven插件配置如下。是否有任何方法可以使所有執行並行發生?soapui maven插件可以並行執行多個項目嗎?
<plugin>
<groupId>com.smartbear.soapui</groupId>
<artifactId>soapui-maven-plugin</artifactId>
<version>5.2.1</version>
<configuration>
<junitReport>true</junitReport>
.......
</configuration>
<executions>
<execution>
<id>exec1</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<projectFile>project1.xml</projectFile>
</configuration>
</execution>
<execution>
<id>exec2</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<projectFile>project2.xml</projectFile>
</configuration>
</execution>
</executions>
</plugin>