You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2010/09/04 20:44:47 UTC

svn commit: r992655 - in /commons/proper/digester/trunk: checkstyle.xml file-header.txt pom.xml src/main/config/ src/main/config/checkstyle.xml src/main/config/file-header.txt

Author: simonetripodi
Date: Sat Sep  4 18:44:47 2010
New Revision: 992655

URL: http://svn.apache.org/viewvc?rev=992655&view=rev
Log:
moved config resources to the proper dir

Added:
    commons/proper/digester/trunk/src/main/config/
    commons/proper/digester/trunk/src/main/config/checkstyle.xml
      - copied unchanged from r991820, commons/proper/digester/trunk/checkstyle.xml
    commons/proper/digester/trunk/src/main/config/file-header.txt
      - copied unchanged from r992060, commons/proper/digester/trunk/file-header.txt
Removed:
    commons/proper/digester/trunk/checkstyle.xml
    commons/proper/digester/trunk/file-header.txt
Modified:
    commons/proper/digester/trunk/pom.xml

Modified: commons/proper/digester/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/digester/trunk/pom.xml?rev=992655&r1=992654&r2=992655&view=diff
==============================================================================
--- commons/proper/digester/trunk/pom.xml (original)
+++ commons/proper/digester/trunk/pom.xml Sat Sep  4 18:44:47 2010
@@ -282,9 +282,9 @@
         <artifactId>maven-checkstyle-plugin</artifactId>
         <version>2.1</version>
         <configuration>
-          <configLocation>${basedir}/checkstyle.xml</configLocation>
+          <configLocation>${basedir}/src/main/config/checkstyle.xml</configLocation>
           <enableRulesSummary>false</enableRulesSummary>
-          <headerFile>${basedir}/file-header.txt</headerFile>
+          <headerFile>${basedir}/src/main/config/file-header.txt</headerFile>
         </configuration>
       </plugin>
       <plugin>