You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ba...@apache.org on 2008/04/27 18:00:48 UTC

svn commit: r651971 - in /commons/proper: beanutils/trunk/ betwixt/trunk/ chain/trunk/ digester/trunk/ logging/trunk/ math/trunk/ proxy/trunk/ validator/trunk/

Author: bayard
Date: Sun Apr 27 09:00:39 2008
New Revision: 651971

URL: http://svn.apache.org/viewvc?rev=651971&view=rev
Log:
Fixing the headerFile location as per CODEC-67 and Benjamin's patch

Modified:
    commons/proper/beanutils/trunk/checkstyle.xml
    commons/proper/betwixt/trunk/checkstyle.xml
    commons/proper/chain/trunk/checkstyle.xml
    commons/proper/digester/trunk/checkstyle.xml
    commons/proper/logging/trunk/checkstyle.xml
    commons/proper/math/trunk/checkstyle.xml
    commons/proper/proxy/trunk/checkstyle.xml
    commons/proper/validator/trunk/checkstyle.xml

Modified: commons/proper/beanutils/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/checkstyle.xml?rev=651971&r1=651970&r2=651971&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/checkstyle.xml (original)
+++ commons/proper/beanutils/trunk/checkstyle.xml Sun Apr 27 09:00:39 2008
@@ -44,7 +44,7 @@
       <property name="allowUndeclaredRTE" value="true"/>
     </module>
     <module name="Header">
-       <property name="headerFile" value="license-header.txt"/>
+      <property name="headerFile" value="${basedir}/LICENSE-header.txt"/>
     </module>
  </module>
 </module>

Modified: commons/proper/betwixt/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/betwixt/trunk/checkstyle.xml?rev=651971&r1=651970&r2=651971&view=diff
==============================================================================
--- commons/proper/betwixt/trunk/checkstyle.xml (original)
+++ commons/proper/betwixt/trunk/checkstyle.xml Sun Apr 27 09:00:39 2008
@@ -28,7 +28,7 @@
   <module name="TreeWalker">
     <!-- Verify that EVERY source file has the appropriate license -->
     <module name="Header">
-      <property name="headerFile" value="LICENSE.txt"/>
+      <property name="headerFile" value="${basedir}/LICENSE-header.txt"/>
     </module>
 
     <module name="OperatorWrap">
@@ -44,4 +44,4 @@
     </module>
     
   </module>
-</module>
\ No newline at end of file
+</module>

Modified: commons/proper/chain/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/chain/trunk/checkstyle.xml?rev=651971&r1=651970&r2=651971&view=diff
==============================================================================
--- commons/proper/chain/trunk/checkstyle.xml (original)
+++ commons/proper/chain/trunk/checkstyle.xml Sun Apr 27 09:00:39 2008
@@ -45,7 +45,7 @@
           <!-- Checks that are different from the sun coding conventions ones -->
           <!-- ************************************************************** -->
           <module name="Header">
-              <property name="headerFile" value="license-header.txt"/>
+              <property name="headerFile" value="${basedir}/LICENSE-header.txt"/>
               <property name="ignoreLines" value="2"/>
           </module>
           <property name="tabWidth" value="4"/>

Modified: commons/proper/digester/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/digester/trunk/checkstyle.xml?rev=651971&r1=651970&r2=651971&view=diff
==============================================================================
--- commons/proper/digester/trunk/checkstyle.xml (original)
+++ commons/proper/digester/trunk/checkstyle.xml Sun Apr 27 09:00:39 2008
@@ -11,7 +11,7 @@
   <module name="TreeWalker">
     <!-- Verify that EVERY source file has the appropriate license -->
     <module name="Header">
-      <property name="headerFile" value="file-header.txt"/>
+      <property name="headerFile" value="${basedir}/LICENSE-header.txt"/>
       <property name="ignoreLines" value="1,3"/>
     </module>
 

Modified: commons/proper/logging/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/checkstyle.xml?rev=651971&r1=651970&r2=651971&view=diff
==============================================================================
--- commons/proper/logging/trunk/checkstyle.xml (original)
+++ commons/proper/logging/trunk/checkstyle.xml Sun Apr 27 09:00:39 2008
@@ -30,7 +30,7 @@
   <module name="TreeWalker">
     <!-- Verify that EVERY source file has the appropriate license -->
     <module name="Header">
-      <property name="headerFile" value="license-header.txt"/>
+      <property name="headerFile" value="${basedir}/LICENSE-header.txt"/>
     </module>
 
     <module name="OperatorWrap">

Modified: commons/proper/math/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/checkstyle.xml?rev=651971&r1=651970&r2=651971&view=diff
==============================================================================
--- commons/proper/math/trunk/checkstyle.xml (original)
+++ commons/proper/math/trunk/checkstyle.xml Sun Apr 27 09:00:39 2008
@@ -27,7 +27,7 @@
    
     <!-- Verify that EVERY source file has the appropriate license -->
     <module name="Header">
-      <property name="headerFile" value="license-header.txt"/>
+      <property name="headerFile" value="${basedir}/LICENSE-header.txt"/>
       <property name="ignoreLines" value="2"/>
     </module>
 

Modified: commons/proper/proxy/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/proxy/trunk/checkstyle.xml?rev=651971&r1=651970&r2=651971&view=diff
==============================================================================
--- commons/proper/proxy/trunk/checkstyle.xml (original)
+++ commons/proper/proxy/trunk/checkstyle.xml Sun Apr 27 09:00:39 2008
@@ -28,7 +28,7 @@
   <module name="TreeWalker">
     <!-- Verify that EVERY source file has the appropriate license -->
     <module name="Header">
-      <property name="headerFile" value="license-header.txt"/>
+      <property name="headerFile" value="${basedir}/LICENSE-header.txt"/>
     </module>
 
     <!-- no tabs allowed in files -->
@@ -43,4 +43,4 @@
       <property name="max" value="120"/>
     </module>
   </module>
-</module>
\ No newline at end of file
+</module>

Modified: commons/proper/validator/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/validator/trunk/checkstyle.xml?rev=651971&r1=651970&r2=651971&view=diff
==============================================================================
--- commons/proper/validator/trunk/checkstyle.xml (original)
+++ commons/proper/validator/trunk/checkstyle.xml Sun Apr 27 09:00:39 2008
@@ -139,7 +139,7 @@
 
     <!-- enforce License Header -->
     <module name="Header">
-       <property name="headerFile" value="license-header.txt"/>
+      <property name="headerFile" value="${basedir}/LICENSE-header.txt"/>
     </module>
 
   </module>