vmassol 02/04/09 17:28:52
Modified: anttasks build.xml
Log:
update to checkstyle 2.2
Revision Changes Path
1.12 +32 -2 jakarta-cactus/anttasks/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/anttasks/build.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- build.xml 19 Mar 2002 10:39:09 -0000 1.11
+++ build.xml 10 Apr 2002 00:28:52 -0000 1.12
@@ -239,8 +239,38 @@
<echo message="Errors are reported in ${target.dir}/checkstyle_errors.xml"/>
- <checkstyle paramPattern="^(the|is|has)[A-Z][a-zA-Z0-9]*$"
- allowProtected="true" headerFile="./LICENSE.cactus">
+ <checkstyle
+ lcurlyType="nl"
+ lcurlyMethod="nl"
+ lcurlyOther="eol"
+ rcurly="same"
+ allowTabs="false"
+ allowProtected="true"
+ allowPackage="false"
+ allowNoAuthor="false"
+ maxLineLen="100"
+ ignoreImportLen="true"
+ maxMethodLen="100"
+ maxConstructorLen="100"
+ maxFileLen="2000"
+ memberPattern="^[a-z][a-zA-Z0-9]*$"
+ publicMemberPattern="^[a-z][a-zA-Z0-9]*$"
+ paramPattern="^(the|is|has)[A-Z][a-zA-Z0-9]*$"
+ constPattern="^[A-Z]([A-Z0-9_]*[A-Z0-9])?$"
+ staticPattern="^[a-z][a-zA-Z0-9]*$"
+ typePattern="^[A-Z][a-zA-Z0-9]*$"
+ methodPattern="^[a-z][a-zA-Z0-9]*$"
+ localVarPattern="^[a-z][a-zA-Z0-9]*$"
+ headerFile="./LICENSE.cactus"
+ headerLinesRegexp="false"
+ javadocScope="private"
+ requirePackageHtml="false"
+ ignoreImports="false"
+ ignoreWhitespace="false"
+ ignoreCastWhitespace="false"
+ ignoreBraces="false"
+ failOnViolation="false"
+ cacheFile="${target.dir}/checkstyle.cache">
<fileset dir="${src.java.dir}">
<include name="**/*.java"/>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>