我正在寻找汇总从运行junit测试的maven生成的junit报告xml文件的方法。我找到以下内容并将其添加到我的pom中。但是我相信这仅用于报告,而我希望将xml文件进行汇总。
https://maven.apache.org/surefire/maven-surefire-report-plugin/report-only-mojo.html
我的POM中有以下内容
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.21.0</version>
<configuration>
<parallel>methods</parallel>
<threadCount>10</threadCount>
<testFailureIgnore>true</testFailureIgnore>
<aggregate>true</aggregate>
</configuration>
</plugin>
但是它正在生成多个测试报告。
我也尝试过Aggregate surefire reports of maven project hierarchy as XML for eclipse?,但这也不起作用。但是我再次相信这仅是为了报告。
有什么想法吗?感谢您的帮助。
答案 0 :(得分:0)
您已使用maven-surefire-plugin代替了maven-surefire-report-plugin。尝试使用maven-surefire-report-plugin