You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2012/08/28 00:27:32 UTC

svn commit: r1377891 - in /commons/proper/codec/trunk: checkstyle.xml pom.xml

Author: ggregory
Date: Mon Aug 27 22:27:31 2012
New Revision: 1377891

URL: http://svn.apache.org/viewvc?rev=1377891&view=rev
Log:
Fix header file issue. Set line length check to 120 instead of 80 (Commons default IIRC).

Modified:
    commons/proper/codec/trunk/checkstyle.xml
    commons/proper/codec/trunk/pom.xml

Modified: commons/proper/codec/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/checkstyle.xml?rev=1377891&r1=1377890&r2=1377891&view=diff
==============================================================================
--- commons/proper/codec/trunk/checkstyle.xml (original)
+++ commons/proper/codec/trunk/checkstyle.xml Mon Aug 27 22:27:31 2012
@@ -60,6 +60,9 @@ limitations under the License.
     <module name="OperatorWrap">
       <property name="option" value="eol" />
     </module>
+    <module name="LineLength">
+      <property name="max" value="120"/>
+    </module>
   </module>
 
 </module>

Modified: commons/proper/codec/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/pom.xml?rev=1377891&r1=1377890&r2=1377891&view=diff
==============================================================================
--- commons/proper/codec/trunk/pom.xml (original)
+++ commons/proper/codec/trunk/pom.xml Mon Aug 27 22:27:31 2012
@@ -208,6 +208,7 @@ limitations under the License.
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
     <commons.encoding>UTF-8</commons.encoding>
+    <checkstyle.header.file>${basedir}/LICENSE-header.txt</checkstyle.header.file>
   </properties>
   <build>
     <pluginManagement>