You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2013/02/03 21:29:34 UTC

svn commit: r1441961 - /maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml

Author: dennisl
Date: Sun Feb  3 20:29:34 2013
New Revision: 1441961

URL: http://svn.apache.org/viewvc?rev=1441961&view=rev
Log:
[MCHECKSTYLE-184] Allow src/main/resources to be searched by Checkstyle

Now that we let Checkstyle look at properties files, we need to make sure that the RegexpHeader check only looks at java files.

Modified:
    maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml

Modified: maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml?rev=1441961&r1=1441960&r2=1441961&view=diff
==============================================================================
--- maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml (original)
+++ maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml Sun Feb  3 20:29:34 2013
@@ -47,6 +47,7 @@ under the License.
     <!-- Checks for Headers                              -->
     <!-- See http://checkstyle.sf.net/config_header.html -->
     <module name="RegexpHeader">
+      <property name="fileExtensions" value="java"/>
       <property name="headerFile" value="${checkstyle.header.file}"/>
     </module>