Looking for an xml example to generate a Findbugs report with ANT to analyze multiple jars?

How can I configure an Ant task to generate a Findbugs report when there are many banners in the source folder?

I am looking for a processed example of an Ant task required to output fancy HTML from a folder containing multiple jars

0


source to share


2 answers


FindBugs Ant target to generate an XML report, then apply one of the XSLT transformations that comes with your FindBugs installation via the standard Ant XSLT target .



+1


source


This topic is 2 years old, but maybe someone will find it useful:

You can do it easily:

<class location="${src.dir}/test.jar" /> 
<class location="${src.dir2}/test2.jar" />

      



Assuming you have 2 source paths, you should define them first:

<sourcePath path="first source path" />
<sourcePath path="second source path" />

      

+1


source







All Articles