Jenkins can visualize the results of the FindBugs analysis of your
class files. When this option is configured and your build runs the
maven goal findbugs:findbugs
then Jenkins provides useful
information about analysis results, such as historical result trend,
module and package statistics, web UI for viewing analysis reports and
warnings, and so on.
pom.xml
contains the
following configuration then this plug-in will automatically pick up the
correct results file: <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>1.2</version> <configuration> <findbugsXmlOutput>true</findbugsXmlOutput> <findbugsXmlWithMessages>true</findbugsXmlWithMessages> <xmlOutput>true</xmlOutput> [...] </configuration> </plugin>