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>