You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2015/08/20 16:42:36 UTC

svn commit: r1696800 - /commons/proper/bcel/trunk/pom.xml

Author: sebb
Date: Thu Aug 20 14:42:36 2015
New Revision: 1696800

URL: http://svn.apache.org/r1696800
Log:
Allow Checkstyle to be run by the CLI

Modified:
    commons/proper/bcel/trunk/pom.xml

Modified: commons/proper/bcel/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/pom.xml?rev=1696800&r1=1696799&r2=1696800&view=diff
==============================================================================
--- commons/proper/bcel/trunk/pom.xml (original)
+++ commons/proper/bcel/trunk/pom.xml Thu Aug 20 14:42:36 2015
@@ -237,6 +237,18 @@
           </ignorePathsToDelete>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <!-- Use 2.9.1 instead of 2.10; 2.10 seems to scan the 'target'
+          dir and wants license headers in .properties to be the header for
+          Java files. -->
+        <version>2.9.1</version>
+        <configuration>
+          <configLocation>${basedir}/checkstyle.xml</configLocation>
+          <enableRulesSummary>false</enableRulesSummary>
+        </configuration>
+      </plugin>
     </plugins>
   </build>