2

Please provide steps to integrate findbugs with maven

4

2 回答 2

4

使用 Maven Findbugs 插件。有关示例,请参见插件的使用页面

于 2010-06-14T13:28:02.733 回答
0

FindBugs 查找 Java 程序中的错误。它基于错误模式的概念以便与 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 –&gt;
        <xmlOutputDirectory>target/site</xmlOutputDirectory>
        <threshold>High</threshold>
    </configuration>
</plugin>
于 2012-10-26T06:51:03.250 回答