文件夹项目SmartBear soapui maven插件

我使用maven下的插件SmartBear SoapUI“com.smartbear.soapui”的5.1.3版本。 是否可以仅定义xml文件夹的名称而不是标签上的完整路径来运行同一文件夹的项目列表?


您可以使用修整插件来执行位于文件夹中的所有项目。 或者具有多个执行部分的现有soapui-maven插件(每个执行一个soapui项目xml文件)


与redfish4ktc你可以做到这一点

示例:

<build>
    <plugins>
        <plugin>
            <groupId>com.github.redfish4ktc.soapui</groupId>
            <artifactId>maven-soapui-extension-plugin</artifactId>
            <version>4.6.4.2</version>
            <executions>
                <execution>
                    <id>soapUI1</id>
                    <phase>test</phase>
                    <goals>
                        <goal>test-multi</goal>
                    </goals>
                    <configuration>
                        <projectFiles>
                            <scan>
                                <baseDirectory>./soapui/projects</baseDirectory>
                                <includes>
                                    <include>**/*_suffix.xml</include>
                                </includes>
                            </scan>
                        </projectFiles>
                        <outputFolder>./outputfolder</outputFolder>
                        <junitReport>false</junitReport>
                        <useOutputFolderPerProject>true</useOutputFolderPerProject>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

添加运行这只是执行maven命令:

mvn test com.github.redfish4ktc.soapui:maven-soapui-extension-plugin:4.6.4.2:test-multi
链接地址: http://www.djcxy.com/p/60667.html

上一篇: Folder projects SmartBear soapui maven plugin

下一篇: Maven hangs after wildfly