[MMTP-devel] SF.net SVN: mtp: [45] trunk
Status: Pre-Alpha
Brought to you by:
idominguez
|
From: <ido...@us...> - 2007-12-16 01:20:12
|
Revision: 45
http://mtp.svn.sourceforge.net/mtp/?rev=45&view=rev
Author: idominguez
Date: 2007-12-15 17:18:33 -0800 (Sat, 15 Dec 2007)
Log Message:
-----------
checkstyle correctly included in the classpath
Modified Paths:
--------------
trunk/README
trunk/build.xml
Removed Paths:
-------------
trunk/bin/checkstyle
Modified: trunk/README
===================================================================
--- trunk/README 2007-12-09 14:39:59 UTC (rev 44)
+++ trunk/README 2007-12-16 01:18:33 UTC (rev 45)
@@ -73,5 +73,5 @@
Note that we try to follow some coding standards, although part of the old code
doesn't follow those at all. If you are going to submit a patch, please try to
use those standards in your new code. You can check your code with
-"bin/checkstyle", and the list of enabled options for it is detailed in
+"ant checkstyle", and the list of enabled options for it is detailed in
"build/sun_checks.xml"
Deleted: trunk/bin/checkstyle
===================================================================
--- trunk/bin/checkstyle 2007-12-09 14:39:59 UTC (rev 44)
+++ trunk/bin/checkstyle 2007-12-16 01:18:33 UTC (rev 45)
@@ -1 +0,0 @@
-ant -lib lib/checkstyle.jar:lib/commons-beanutils.jar:lib/commons-logging.jar:lib/antlr.jar checkstyle
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2007-12-09 14:39:59 UTC (rev 44)
+++ trunk/build.xml 2007-12-16 01:18:33 UTC (rev 45)
@@ -31,7 +31,11 @@
</javadoc>
</target>
-<taskdef resource="checkstyletask.properties" />
+<taskdef resource="checkstyletask.properties">
+ <classpath>
+ <fileset dir="lib/" includes="*.jar" />
+ </classpath>
+</taskdef>
<target name="checkstyle" description="Checks the style of the code">
<checkstyle config="build/sun_checks.xml" >
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|