请提供将findbugs与maven
集成的步骤答案 0 :(得分:4)
使用Maven Findbugs插件。有关示例,请参阅插件的usage page。
答案 1 :(得分:0)
FindBugs在Java程序中查找错误。它基于bug模式的概念,以便与Maven集成,将以下内容放入插件部分。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.0.1</version>
<configuration>
<xmlOutput>true</xmlOutput>
<!– Optional directory to put FindBugs xdoc xml report –>
<xmlOutputDirectory>target/site</xmlOutputDirectory>
<threshold>High</threshold>
</configuration>
</plugin>