Author: niallp
Date: Wed Feb 20 10:23:12 2008
New Revision: 629559
URL: http://svn.apache.org/viewvc?rev=629559&view=rev
Log:
Exclude surefire and jdepend reports - thanks to Sebb
Modified:
commons/proper/commons-build-plugin/trunk/pom.xml
Modified: commons/proper/commons-build-plugin/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/commons-build-plugin/trunk/pom.xml?rev=629559&r1=629558&r2=629559&view=diff
==============================================================================
--- commons/proper/commons-build-plugin/trunk/pom.xml (original)
+++ commons/proper/commons-build-plugin/trunk/pom.xml Wed Feb 20 10:23:12 2008
@@ -144,6 +144,20 @@
</reportSet>
</reportSets>
</plugin>
+
+ <!-- exclude surefire report -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ <reportSets><reportSet/></reportSets>
+ </plugin>
+
+ <!-- exclude jdepend report -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jdepend-maven-plugin</artifactId>
+ <reportSets><reportSet/></reportSets>
+ </plugin>
</plugins>
</reporting>
<properties>