在 Maven 站点中管理报告插件
我在多模块项目中使用 Maven 3,并使用以下报告插件配置了站点: 1. 查找错误 2. 科贝图拉 3. 测试的surefire报告
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${maven.site.version}</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
</reportPlugins>
</configuration>
</plugin>
如果我使用:
mvn 全新安装后 mvn site -DskipTests=true
我在 mvn site 之后没有得到正确的报告。 Cobertura 相关的测试覆盖率报告未显示正确的数据,即所有包的测试覆盖率均为 0%。看来 cobertura 希望自己运行测试来确定覆盖范围。
但是当我跑步时
mvn 站点
这使得我的所有测试针对 cobertura 和 Surefire 报告分别运行两次。
我只想运行一次测试并生成所需的报告。请让我知道使用 maven 中的上述 reportPlugins 实现此目的的正确方法。
I'm using Maven 3 in a multi module project and configured site with following report plugins:
1. findbugs
2. cobertura
3. surefire report for tests
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${maven.site.version}</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
</reportPlugins>
</configuration>
</plugin>
If I use:
mvn site -DskipTests=true after mvn clean install
I dot not get proper reports after mvn site. Cobertura related test coverage report does not shows correct data i.e. all packages as 0% test coverage. It seems cobertura wants to run tests itself to determine coverage.
But when I run
mvn site
This makes my all tests run twice once each for cobertura and surefire reports.
I want to run tests only once and generate the required reports. Please let me know the correct way to achieve this using above reportPlugins in maven.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Cobertura 和 Surefire Report(用于站点生成)做了两种不同的事情。因此,您无法避免运行两次测试 - 一次针对 cobertura,一次针对站点。
您可以查看将 cobertura run 移出 Maven 默认生命周期并根据需要单独运行它。这样,
mvn site
将仅运行 Surefire 来生成站点。Cobertura and surefire report (for site generation) do two different things. Hence you cannot avoid running the tests twice - once for cobertura and one for site.
What you could look at is moving the cobertura run out of maven default life-cycle and run it separately as required. This way,
mvn site
will only run surefire for site generation.