Integrating Ant and Checkstyle americas cup win 2682133k1

Integrating Ant and Checkstyle

The Open Source Java code checker Checkstyle can be easily used by Ant to check your Java code.

This is an excerpt from an Ant build.xml file using the Sun Java coding checks:

   <property name="checkstyle.home" location="..."/>
   <taskdef resource="checkstyletask.properties" classpath="${checkstyle.home}/checkstyle-all-3.5.jar"/>
   <target name="checkstyle">
     <checkstyle config="${checkstyle.home}/sun_checks.xml" failOnViolation="false" classpathref="classpath">
       <fileset dir="${src.dir}" includes="**/*.java"/>
     </checkstyle>
   </target>

See also the manual of Checkstyle. Please note that JDeveloper has Audit Rules for Java code, but I do not know how to check those Rules with Ant.