We Recommend

Beginning XML Beginning XML
The perfect resource for beginning XML programmers, this guidebook shows you what XML is, how to use it, and what technologies surround it. The authors build on the strengths of previous editions while covering the latest changes in the XML landscape such as XQuery, RSS and Atom, and Ajax.


Posted By

narkisr on 07/14/08


Tagged

ant Findbugs Task


Versions (?)


Findbugs Ant task example


Published in: XML 


  1. <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"/>
  2. <property name="findbugs.home" value="the find bugs home path" />
  3.  
  4. <target name="findbugs">
  5. <findbugs home="${findbugs.home}"
  6. output="html" outputFile="findbugs.html" jvmargs="-Xms512M -Xmx512M ">
  7. <sourcePath path="${basedir}/app" />
  8. <class location="${basedir}/app" />
  9. </findbugs>
  10. </target>

Report this snippet 

You need to login to post a comment.