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 2012/03/07 12:23:29 UTC

svn commit: r1297941 - /commons/proper/commons-parent/trunk/pom.xml

Author: sebb
Date: Wed Mar  7 11:23:29 2012
New Revision: 1297941

URL: http://svn.apache.org/viewvc?rev=1297941&view=rev
Log:
 Allow surefire-report aggregation to be easily configured for multi-module projects

Modified:
    commons/proper/commons-parent/trunk/pom.xml

Modified: commons/proper/commons-parent/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=1297941&r1=1297940&r2=1297941&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Wed Mar  7 11:23:29 2012
@@ -496,6 +496,9 @@ Version 23:
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-report-plugin</artifactId>
         <version>${commons.surefire.version}</version>
+        <configuration>
+          <aggregate>${commons.surefire-report.aggregate}</aggregate>
+        </configuration>
       </plugin>
       <!-- Other plugins, alpha order by groupId and artifactId -->
       <plugin>
@@ -1127,6 +1130,9 @@ Version 23:
 
     <!-- Allow Clirr severity to be overriden by the command-line option -DminSeverity=level -->
     <minSeverity>info</minSeverity>
+    
+    <!-- Allow surefire-report aggregation to be easily configured for multi-module projects -->
+    <commons.surefire-report.aggregate>false</commons.surefire-report.aggregate>
   </properties>
 
 </project>