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 16:26:30 UTC

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

Author: hboutemy
Date: Sun Jul 20 14:26:30 2014
New Revision: 1612092

URL: http://svn.apache.org/r1612092
Log:
use MPIR-297 to remove some unwanted MPIR reports from main site

Modified:
    maven/site/trunk/pom.xml

Modified: maven/site/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/site/trunk/pom.xml?rev=1612092&r1=1612091&r2=1612092&view=diff
==============================================================================
--- maven/site/trunk/pom.xml (original)
+++ maven/site/trunk/pom.xml Sun Jul 20 14:26:30 2014
@@ -176,18 +176,22 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>2.7</version>
+        <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>
-            <reports><!-- expecting reports replace inherited -->
-              <!-- which was ok with M3 until 3.0.3 but not M2 nor M3.0.4+: see MSITE-596/MNG-5155 -->
-              <!-- needs a workaround (skip=true for default reportSet and this as a new reportSet?) -->
+            <id>site-mpir</id>
+            <configuration><!-- execute only reports necessary for main site, in a dedicated reportSet -->
+              <skip>false</skip>
+            </configuration>
+            <reports>
+              <report>index</report>
               <report>cim</report>
-              <!-- <report>issue-tracking</report> -->
               <report>mailing-list</report>
               <report>license</report>
               <report>project-team</report>
-              <!-- <report>scm</report> -->
             </reports>
           </reportSet>
         </reportSets>