Author: mck
Date: Wed Jul 13 12:20:25 2011
New Revision: 1145966

URL: http://svn.apache.org/viewvc?rev=1145966&view=rev
Log:
mvn site:site (checkstyle:checkstyle) didn't work anymore as our configuration 
wasn't compatible w/ checkstyle-5.0+
 http://checkstyle.sourceforge.net/releasenotes.html

Modified:
    tiles/maven/trunk/build/tiles_checks.xml

Modified: tiles/maven/trunk/build/tiles_checks.xml
URL: 
http://svn.apache.org/viewvc/tiles/maven/trunk/build/tiles_checks.xml?rev=1145966&r1=1145965&r2=1145966&view=diff
==============================================================================
--- tiles/maven/trunk/build/tiles_checks.xml (original)
+++ tiles/maven/trunk/build/tiles_checks.xml Wed Jul 13 12:20:25 2011
@@ -6,9 +6,9 @@
     The ASF licenses this file to You under the Apache License, Version 2.0
     (the "License"); you may not use this file except in compliance with
     the License.  You may obtain a copy of the License at
-   
+
          http://www.apache.org/licenses/LICENSE-2.0
-   
+
     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -35,14 +35,10 @@
         <module name="ParameterName"/>
         <module name="StaticVariableName"/>
         <module name="TypeName"/>
-        <module name="RegexpHeader">
-            <property name="header" value="/\*\s*\n \*\s*\$Id.*\$\n \*\s*\n 
\*\s*Licensed to the Apache Software Foundation \(ASF\) under one\n \*\s*or 
more contributor license agreements\.  See the NOTICE file\n \*\s*distributed 
with this work for additional information\n \*\s*regarding copyright 
ownership\.  The ASF licenses this file\n \*\s*to you under the Apache License, 
Version 2\.0 \(the\n \*\s*.License.\); you may not use this file except in 
compliance\n \*\s*with the License\.  You may obtain a copy of the License at\n 
\*\s*\n \*\s*http://www\.apache\.org/licenses/LICENSE\-2\.0\n \*\s*\n 
\*\s*Unless required by applicable law or agreed to in writing,\n \*\s*software 
distributed under the License is distributed on an\n \*\s*.AS IS. BASIS, 
WITHOUT WARRANTIES OR CONDITIONS OF ANY\n \*\s*KIND, either express or 
implied\.  See the License for the\n \*\s*specific language governing 
permissions and limitations\n \*\s*under the License\.\n \*/\s*"/>
-        </module>
         <module name="AvoidStarImport"/>
         <module name="IllegalImport"/>
         <module name="RedundantImport"/>
         <module name="UnusedImports"/>
-        <module name="FileLength"/>
         <module name="LineLength">
             <property name="ignorePattern" value="^ \* @version .*$"/>
             <property name="max" value="120"/>
@@ -57,7 +53,6 @@
         <module name="OperatorWrap"/>
         <module name="ParenPad"/>
         <module name="TypecastParenPad"/>
-        <module name="TabCharacter"/>
         <module name="WhitespaceAfter"/>
         <module name="WhitespaceAround">
             <property name="tokens" 
value="ASSIGN,BAND,BAND_ASSIGN,BOR,BOR_ASSIGN,BSR,BSR_ASSIGN,BXOR,BXOR_ASSIGN,COLON,DIV,DIV_ASSIGN,EQUAL,GE,GT,LAND,LCURLY,LE,LITERAL_ASSERT,LITERAL_CATCH,LITERAL_DO,LITERAL_ELSE,LITERAL_FINALLY,LITERAL_FOR,LITERAL_IF,LITERAL_RETURN,LITERAL_SYNCHRONIZED,LITERAL_TRY,LITERAL_WHILE,LOR,LT,MINUS,MINUS_ASSIGN,MOD,MOD_ASSIGN,NOT_EQUAL,PLUS,PLUS_ASSIGN,QUESTION,RCURLY,SL,SLIST,SL_ASSIGN,SR,SR_ASSIGN,STAR,STAR_ASSIGN,LITERAL_ASSERT,TYPE_EXTENSION_AND"/>
@@ -86,14 +81,19 @@
             <property name="protectedAllowed" value="true"/>
         </module>
         <module name="ArrayTypeStyle"/>
-        <module name="GenericIllegalRegexp">
-            <property name="format" value="\s+$"/>
-            <property name="message" value="Line has trailing spaces."/>
-        </module>
         <module name="TodoComment"/>
         <module name="UpperEll"/>
     </module>
-    <module name="PackageHtml"/>
+    <module name="FileTabCharacter"/>
+    <module name="FileLength"/>
+    <module name="RegexpHeader">
+        <property name="header" value="/\*\s*\n \*\s*\$Id.*\$\n \*\s*\n 
\*\s*Licensed to the Apache Software Foundation \(ASF\) under one\n \*\s*or 
more contributor license agreements\.  See the NOTICE file\n \*\s*distributed 
with this work for additional information\n \*\s*regarding copyright 
ownership\.  The ASF licenses this file\n \*\s*to you under the Apache License, 
Version 2\.0 \(the\n \*\s*.License.\); you may not use this file except in 
compliance\n \*\s*with the License\.  You may obtain a copy of the License at\n 
\*\s*\n \*\s*http://www\.apache\.org/licenses/LICENSE\-2\.0\n \*\s*\n 
\*\s*Unless required by applicable law or agreed to in writing,\n \*\s*software 
distributed under the License is distributed on an\n \*\s*.AS IS. BASIS, 
WITHOUT WARRANTIES OR CONDITIONS OF ANY\n \*\s*KIND, either express or 
implied\.  See the License for the\n \*\s*specific language governing 
permissions and limitations\n \*\s*under the License\.\n \*/\s*"/>
+    </module>
+    <module name="RegexpSingleline">
+        <property name="format" value="\s+$"/>
+        <property name="message" value="Line has trailing spaces."/>
+    </module>
+    <module name="JavadocPackage"/>
     <module name="NewlineAtEndOfFile"/>
     <module name="Translation"/>
 </module>


Reply via email to