如何使用maven soapui扩展插件运行多个soapui OSS项目?

如何使用maven soapui扩展插件运行多个soapui OSS项目?,maven,soapui,Maven,Soapui,当我运行插件maven soapui扩展插件来执行multiples项目时,我构建成功了,但什么都没有运行。你能帮我吗 我已经运行了这个命令:mvncom.github.redfish4ktc.soapui:maven soapui扩展插件:testmulti-X>cmd.log com.github.redfish4ktc.soapui maven soapui扩展插件 4.6.4.2 soapui多项目 集成测试 测试多重 开放源码软件 ${basedir}/test/suite/soa

当我运行插件maven soapui扩展插件来执行multiples项目时,我构建成功了,但什么都没有运行。你能帮我吗

我已经运行了这个命令:mvncom.github.redfish4ktc.soapui:maven soapui扩展插件:testmulti-X>cmd.log


com.github.redfish4ktc.soapui
maven soapui扩展插件
4.6.4.2
soapui多项目
集成测试
测试多重
开放源码软件
${basedir}/test/suite/soapui/suites/
**/*.xml
${basedir}/build/soapui报告/
真的
真的
假的
真的
真的
com.smartbear.soapui
索皮
4.6.4

只需执行以下maven命令:mvn integration test com.github.redfish4ktc.soapui:maven soapui扩展插件:4.6.4.2:test multi

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