|
From: <ls...@us...> - 2009-08-12 19:26:04
|
Revision: 5639
http://jnode.svn.sourceforge.net/jnode/?rev=5639&view=rev
Author: lsantha
Date: 2009-08-12 19:25:56 +0000 (Wed, 12 Aug 2009)
Log Message:
-----------
Checkstyle upgrade to v 5.0
Modified Paths:
--------------
trunk/all/build.xml
trunk/all/jnode_checks.xml
Added Paths:
-----------
trunk/core/lib/checkstyle-all-5.0.jar
Removed Paths:
-------------
trunk/core/lib/checkstyle-all-4.4.jar
Modified: trunk/all/build.xml
===================================================================
--- trunk/all/build.xml 2009-08-10 21:34:16 UTC (rev 5638)
+++ trunk/all/build.xml 2009-08-12 19:25:56 UTC (rev 5639)
@@ -1149,7 +1149,7 @@
</target>
<target name="checkstyle" description="check the mandatory code conventions">
- <taskdef resource="checkstyletask.properties" classpath="../core/lib/checkstyle-all-4.4.jar"/>
+ <taskdef resource="checkstyletask.properties" classpath="../core/lib/checkstyle-all-5.0.jar"/>
<checkstyle config="jnode_checks.xml">
<fileset dir="../builder/src/builder" includes="**/*.java"/>
<fileset dir="../builder/src/configure" includes="**/*.java"/>
@@ -1177,7 +1177,7 @@
</target>
<target name="checkstyle-new" description="check the recommanded code conventions">
- <taskdef resource="checkstyletask.properties" classpath="../core/lib/checkstyle-all-4.4.jar"/>
+ <taskdef resource="checkstyletask.properties" classpath="../core/lib/checkstyle-all-5.0.jar"/>
<checkstyle config="new_checks.xml">
<!--
<fileset dir="../builder/src/builder" includes="**/*.java"/>
Modified: trunk/all/jnode_checks.xml
===================================================================
--- trunk/all/jnode_checks.xml 2009-08-10 21:34:16 UTC (rev 5638)
+++ trunk/all/jnode_checks.xml 2009-08-12 19:25:56 UTC (rev 5639)
@@ -39,6 +39,9 @@
<!-- Checks whether files end with a new line. -->
<!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
<module name="NewlineAtEndOfFile"/>
+ <module name="FileTabCharacter">
+ <property name="eachLine" value="true"/>
+ </module>
<!-- Checks that property files contain the same keys. -->
<!-- See http://checkstyle.sf.net/config_misc.html#Translation -->
@@ -129,7 +132,6 @@
</module>
<module name="Indentation"/>
- <module name="TabCharacter"/>
<!-- Modifier Checks -->
<!-- See http://checkstyle.sf.net/config_modifiers.html -->
Deleted: trunk/core/lib/checkstyle-all-4.4.jar
===================================================================
(Binary files differ)
Added: trunk/core/lib/checkstyle-all-5.0.jar
===================================================================
(Binary files differ)
Property changes on: trunk/core/lib/checkstyle-all-5.0.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|