/ Published in: XML
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"/> <property name="findbugs.home" value="the find bugs home path" /> <target name="findbugs"> <findbugs home="${findbugs.home}" output="html" outputFile="findbugs.html" jvmargs="-Xms512M -Xmx512M "> <sourcePath path="${basedir}/app" /> <class location="${basedir}/app" /> </findbugs> </target>