I am trying to integrate FindBugs in a maven project. Does anyone have a sample pom.xml generating a simple findbug HTML report in target? Is it possible to generate this report without having to run site:site?
|
|
Check out Sonar. It's an open-source, stand-alone, web service that you "submit" your code to and it produces beautiful HTML reports on all kinds of code metrics. It also keeps a history of builds. And best of all, you don't have to modify your builds or poms! There is a maven goal for it too: Check it out - you won't be sorry! |
|||||||||
|
|
Findbugs jar contains 5 XSLT transformations that can be used to convert hard to read XML to easy to read HTML so we can use xml-maven-plugin plugin to execute transformation and here is the configuration:
To get the report just execute The above code snippet contains all 5 possible transformations so try them all and hopefully you will find one you like. I tried it with maven 3 and Finbugs 2.0 |
||||
|
|