如何将findbugs与maven集成

时间:2010-06-14 13:19:42

标签: maven-2 findbugs

请提供将findbugs与maven

集成的步骤

2 个答案:

答案 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>