You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2014/07/20 18:32:04 UTC

svn commit: r1612115 - /maven/site/trunk/pom.xml

Author: hboutemy
Date: Sun Jul 20 16:32:04 2014
New Revision: 1612115

URL: http://svn.apache.org/r1612115
Log:
refactored configuration

Modified:
    maven/site/trunk/pom.xml

Modified: maven/site/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/site/trunk/pom.xml?rev=1612115&r1=1612114&r2=1612115&view=diff
==============================================================================
--- maven/site/trunk/pom.xml (original)
+++ maven/site/trunk/pom.xml Sun Jul 20 16:32:04 2014
@@ -186,15 +186,14 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-project-info-reports-plugin</artifactId>
         <version>2.8-SNAPSHOT</version>
-        <configuration><!-- don't execute inherited reports, since some are useless and cannot be removed -->
-          <skip>true</skip>
-        </configuration>
         <reportSets>
-          <reportSet>
-            <id>site-mpir</id>
-            <configuration><!-- execute only reports necessary for main site, in a dedicated reportSet -->
-              <skip>false</skip>
+          <reportSet><!-- don't execute inherited reports, since some are useless and cannot be removed -->
+            <configuration>
+              <skip>true</skip>
             </configuration>
+          </reportSet>
+          <reportSet><!-- execute only reports necessary for main site, in a dedicated reportSet -->
+            <id>site-mpir</id>
             <reports>
               <report>index</report>          <!-- xdoc/index.xml.vm -->
               <report>project-team</report>