如何用maven运行多个soapui OSS项目
当我运行插件maven-soapui-extension-plugin来执行多个项目时,我有Build成功但没有任何运行。 请问你能帮帮我吗 ?
我运行了这个命令:mvn com.github.redfish4ktc.soapui:maven-soapui-extension-plugin:test-multi -X> cmd.log
http://www.filehosting.org/file/details/474569/cmd.log
<build>
<plugins>
<plugin>
<groupId>com.github.redfish4ktc.soapui</groupId>
<artifactId>maven-soapui-extension-plugin</artifactId>
<version>4.6.4.2</version>
<executions>
<execution>
<id>soapui-multi-projects</id>
<phase>integration-test</phase>
<goals>
<goal>test-multi</goal>
</goals>
<configuration>
<runnerType>OSS</runnerType>
<projectFiles>
<scan>
<baseDirectory>${basedir}/test/suite/soapui/suites/</baseDirectory>
<includes>
<include>**/*.xml</include>
</includes>
<!-- <excludes> <exclude>**/*fail-*-soapui-project.xml</exclude>
</excludes> -->
</scan>
</projectFiles>
<outputFolder>${basedir}/build/soapui-reports/</outputFolder>
<useOutputFolderPerProject>true</useOutputFolderPerProject>
<exportAll>true</exportAll>
<junitHtmlReport>false</junitHtmlReport>
<junitReport>true</junitReport>
<testFailIgnore>true</testFailIgnore>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.smartbear.soapui</groupId>
<artifactId>soapui</artifactId>
<version>4.6.4</version>
<exclusions>
只需执行这个maven命令:mvn integration-test com.github.redfish4ktc.soapui:maven-soapui-extension-plugin:4.6.4.2:test-multi
链接地址: http://www.djcxy.com/p/60661.html上一篇: How to run multiple soapui OSS project with maven
下一篇: How to execute a specific plugin/Mojo from a pom.xml programmatically?