并行运行多个Maven <execution>

在我的项目中,我有多个maven插件执行来运行测试用例,如下所示:

                 <executions>
                    <execution>
                      <id>abc<id>
                      <goals>
                        <goal>verify</goal>
                      </goals>
                      <configuration>
                        <argLine>${argLine} -Xms1024m -Xmx4096m</argLine>
                      </configuration>
                    </execution>

                    <execution>
                      <id>def</id>
                      ...
                      ...
                      </executions>
                </executions>

我是执行Maven和测试套件的初学者,最近我发现可以在Maven中并行运行测试用例。

从文档中我了解到,方法,类,套件可以并行运行。 我想知道上面的执行程序是否可以并行运行。

谢谢。

caozhiting 回答:并行运行多个Maven <execution>

暂时没有好的解决方案,如果你有好的解决方案,请发邮件至:iooj@foxmail.com
本文链接:https://www.f2er.com/3168691.html

大家都在问