Author: niallp
Date: Thu May 22 18:59:45 2008
New Revision: 659361

URL: http://svn.apache.org/viewvc?rev=659361&view=rev
Log:
Fix typo in the project description and checkstyle plugin config - thanks to Luc
 - typo in the project description in the pom.xml
 - configuration of the license header file name in wrong case
 - change license header file configuration to 
pom.xml(m2)/project.properties(m1)

Modified:
    commons/proper/chain/trunk/checkstyle.xml
    commons/proper/chain/trunk/pom.xml
    commons/proper/chain/trunk/project.properties

Modified: commons/proper/chain/trunk/checkstyle.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/chain/trunk/checkstyle.xml?rev=659361&r1=659360&r2=659361&view=diff
==============================================================================
--- commons/proper/chain/trunk/checkstyle.xml (original)
+++ commons/proper/chain/trunk/checkstyle.xml Thu May 22 18:59:45 2008
@@ -45,8 +45,7 @@
           <!-- Checks that are different from the sun coding conventions ones 
-->
           <!-- ************************************************************** 
-->
           <module name="Header">
-              <property name="headerFile" value="LICENSE-header.txt"/>
-              <property name="ignoreLines" value="2"/>
+              <property name="headerFile" value="${checkstyle.header.file}"/>
           </module>
           <property name="tabWidth" value="4"/>
           <module name="LeftCurly">

Modified: commons/proper/chain/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/chain/trunk/pom.xml?rev=659361&r1=659360&r2=659361&view=diff
==============================================================================
--- commons/proper/chain/trunk/pom.xml (original)
+++ commons/proper/chain/trunk/pom.xml Thu May 22 18:59:45 2008
@@ -29,7 +29,7 @@
     <version>1.2-SNAPSHOT</version>
     <name>Commons Chain</name>
     <description>
-        An implmentation of the GoF Chain of Responsibility pattern
+        An implementation of the GoF Chain of Responsibility pattern
     </description>
     <url>http://commons.apache.org/chain/</url>
     <issueManagement>
@@ -224,8 +224,9 @@
                 <artifactId>maven-checkstyle-plugin</artifactId>
                 <version>2.1</version>
                 <configuration>
-                    <configLocation>checkstyle.xml</configLocation>
+                    <configLocation>${basedir}/checkstyle.xml</configLocation>
                     <enableRulesSummary>false</enableRulesSummary>
+                    <headerFile>${basedir}/license-header.txt</headerFile>
                 </configuration>
             </plugin>
 

Modified: commons/proper/chain/trunk/project.properties
URL: 
http://svn.apache.org/viewvc/commons/proper/chain/trunk/project.properties?rev=659361&r1=659360&r2=659361&view=diff
==============================================================================
--- commons/proper/chain/trunk/project.properties (original)
+++ commons/proper/chain/trunk/project.properties Thu May 22 18:59:45 2008
@@ -74,6 +74,7 @@
 ######################################################################
 maven.checkstyle.properties = checkstyle.xml
 maven.linkcheck.enable=false 
+maven.checkstyle.header.file=${basedir}/license-header.txt
 
 ######################################################################
 # Make the source distro unzip to a different directory


Reply via email to