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 2012/09/09 11:36:15 UTC

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

Author: hboutemy
Date: Sun Sep  9 09:36:14 2012
New Revision: 1382437

URL: http://svn.apache.org/viewvc?rev=1382437&view=rev
Log:
require Maven 3 to build the site, or the project info reports won't be accurate (too much reports linked with M2, see MSITE-596)

Modified:
    maven/site/trunk/pom.xml

Modified: maven/site/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/site/trunk/pom.xml?rev=1382437&r1=1382436&r2=1382437&view=diff
==============================================================================
--- maven/site/trunk/pom.xml (original)
+++ maven/site/trunk/pom.xml Sun Sep  9 09:36:14 2012
@@ -34,6 +34,10 @@
   <name>Apache Maven Site</name>
   <url>http://maven.apache.org/</url>
 
+  <prerequisites>
+    <maven>3.0</maven>
+  </prerequisites>
+
   <!-- repeated here so that maven-site is not appended -->
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/maven/site/trunk/</connection>
@@ -164,7 +168,7 @@
         <artifactId>maven-project-info-reports-plugin</artifactId>
         <reportSets>
           <reportSet>
-            <reports>
+            <reports><!-- expecting reports replace inherited, which is ok with M3 but not M2: see MSITE-596 -->
               <report>cim</report>
               <!-- <report>issue-tracking</report> -->
               <report>mailing-list</report>