如何使用 Maven 3.x 为 findbugs 生成 html 报告
Posted
技术标签:
【中文标题】如何使用 Maven 3.x 为 findbugs 生成 html 报告【英文标题】:How to generate a html report for findbugs with Maven 3.x 【发布时间】:2012-01-23 18:04:29 【问题描述】:是否有人设法配置 findbugs Maven 3.x 插件以生成 xml 和 html 报告? (我想要一个用于 Jenkins 的 xml 和一个用于在提交前检查的 html)
我在网络上看到了很多关于设置的文档,但其中大部分似乎是针对 Maven 2.x 的,我知道它的配置不同(令人讨厌的是 2.x)。 x 配置被 3.x 默默忽略)。我是 Maven 新手,所以我不确定自己是做错了什么还是按照旧的说明进行操作。
我的 pom 包含以下内容:
</build>
</plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.3.3</version>
<configuration>
<!-- findbugs:help -Ddetail=true for outputDirectory:
Location where generated html will be created.
-->
<outputDirectory>$project.build.directory/findbugs</outputDirectory>
<xmlOutput>true</xmlOutput>
<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
<xmlOutputDirectory>target/findbugs</xmlOutputDirectory>
<failOnError>false</failOnError>
</configuration>
</plugin>
</plugins>
</build>
【问题讨论】:
【参考方案1】:Findbugs-Plugin 应该在 maven-site-plugin 的 reportPlugins-Part 中。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</plugins>
</build>
此外,findbugs-report 仅在运行mvn site
之前编译源代码时生成。生成网站时,我使用mvn test site
,所以 findbugs 会生成报告。
【讨论】:
完美。只有一件事:我必须在内部插件中添加一个查看我的answer 是否有类似问题,我建议在执行mvn clean install
命令期间使用 Findbugs 附带的 XSLT 转换来生成 HTML 报告。
【讨论】:
以上是关于如何使用 Maven 3.x 为 findbugs 生成 html 报告的主要内容,如果未能解决你的问题,请参考以下文章
将 findbugs NotNull 设置为包下所有类的默认值
Maven Codehaus findbugs 插件“onlyAnalyze”选项未按预期工作
任何从没有站点:站点的 Maven 生成 Findbug HTML 报告的简单方法?