Hi All,
I'm new to findbugs, recently I've integrated findbugs in my build scritp as
<target name="findbugs">
<findbugs home="${findbugs.home}"
output="xml"
outputFile="${build.home}\bcel-fb.xml" >
<auxClasspath path="${findbugs.home}/lib/Regex.jar" />
<sourcePath path="${basedir}/src/java" />
<class location="${findbugs.home}/BCEL.jar" />
</findbugs>
when I look at the report I've noticed many other java files which are not part of my source code
they were seems to be from regex.jar or BCEL.jar
How do I run the tool only on my source code so that I can only see the analysis done on only my source code.
Thanks in Advance
-Vamsi Hari