You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2012/05/22 07:00:15 UTC

svn commit: r1341305 - /maven/plugin-tools/trunk/pom.xml

Author: olamy
Date: Tue May 22 05:00:15 2012
New Revision: 1341305

URL: http://svn.apache.org/viewvc?rev=1341305&view=rev
Log:
add an aggregated checkstyle report

Modified:
    maven/plugin-tools/trunk/pom.xml

Modified: maven/plugin-tools/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/pom.xml?rev=1341305&r1=1341304&r2=1341305&view=diff
==============================================================================
--- maven/plugin-tools/trunk/pom.xml (original)
+++ maven/plugin-tools/trunk/pom.xml Tue May 22 05:00:15 2012
@@ -414,6 +414,26 @@
               </reportSet>
             </reportSets>
           </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-checkstyle-plugin</artifactId>
+            <version>2.9.1</version>
+            <reportSets>
+              <reportSet>
+                <id>non-aggregate</id>
+                <reports>
+                  <report>checkstyle</report>
+                </reports>
+              </reportSet>
+              <reportSet>
+                <id>aggregate</id>
+                <inherited>false</inherited>
+                <reports>
+                  <report>checkstyle-aggregate</report>
+                </reports>
+              </reportSet>
+            </reportSets>
+          </plugin>
         </plugins>
       </reporting>
     </profile>