[Cherbot-commit] SF.net SVN: cherbot: [102] trunk/build.xml
Status: Alpha
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2007-06-25 20:51:43
|
Revision: 102
http://svn.sourceforge.net/cherbot/?rev=102&view=rev
Author: christianhujer
Date: 2007-06-25 13:51:41 -0700 (Mon, 25 Jun 2007)
Log Message:
-----------
Added checkstyle task / target.
Modified Paths:
--------------
trunk/build.xml
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2007-06-25 20:50:58 UTC (rev 101)
+++ trunk/build.xml 2007-06-25 20:51:41 UTC (rev 102)
@@ -155,4 +155,13 @@
</junit>
</target>
+ <target name="checkstyle" description="Runs checkstyle over the source code.">
+ <taskdef classpath="common/antlib/checkstyle-all-4.3.jar" resource="checkstyletask.properties" />
+ <checkstyle
+ config="common/sun_checks.xml"
+ >
+ <fileset dir="src" includes="**/*.java,**/*.properties" />
+ </checkstyle>
+ </target>
+
</project>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|