You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2010/06/13 12:00:48 UTC

svn commit: r954192 - /openwebbeans/build-tools/trunk/src/main/resources/openwebbeans/owb-checks-default.xml

Author: struberg
Date: Sun Jun 13 10:00:47 2010
New Revision: 954192

URL: http://svn.apache.org/viewvc?rev=954192&view=rev
Log:
OWB-391 increase maximum allowed line numbers to 3500

Modified:
    openwebbeans/build-tools/trunk/src/main/resources/openwebbeans/owb-checks-default.xml

Modified: openwebbeans/build-tools/trunk/src/main/resources/openwebbeans/owb-checks-default.xml
URL: http://svn.apache.org/viewvc/openwebbeans/build-tools/trunk/src/main/resources/openwebbeans/owb-checks-default.xml?rev=954192&r1=954191&r2=954192&view=diff
==============================================================================
--- openwebbeans/build-tools/trunk/src/main/resources/openwebbeans/owb-checks-default.xml (original)
+++ openwebbeans/build-tools/trunk/src/main/resources/openwebbeans/owb-checks-default.xml Sun Jun 13 10:00:47 2010
@@ -106,7 +106,9 @@
 
         <!-- Checks for Size Violations.                    -->
         <!-- See http://checkstyle.sf.net/config_sizes.html -->
-        <module name="FileLength"/>
+        <module name="FileLength">
+          <property name="max" value="3500" />
+        </module>
         <module name="LineLength">
           <property name="max" value="180" />
           <property name="ignorePattern" value="@version|@see"/>