You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2011/07/22 21:30:59 UTC

svn commit: r1149700 - /maven/plugins/branches/maven-site-plugin-3.x/src/site/apt/maven-3.apt.vm

Author: dennisl
Date: Fri Jul 22 19:30:59 2011
New Revision: 1149700

URL: http://svn.apache.org/viewvc?rev=1149700&view=rev
Log:
Add a note about how inheritance of reports works differently in Maven 2 and Maven 3.

Modified:
    maven/plugins/branches/maven-site-plugin-3.x/src/site/apt/maven-3.apt.vm

Modified: maven/plugins/branches/maven-site-plugin-3.x/src/site/apt/maven-3.apt.vm
URL: http://svn.apache.org/viewvc/maven/plugins/branches/maven-site-plugin-3.x/src/site/apt/maven-3.apt.vm?rev=1149700&r1=1149699&r2=1149700&view=diff
==============================================================================
--- maven/plugins/branches/maven-site-plugin-3.x/src/site/apt/maven-3.apt.vm (original)
+++ maven/plugins/branches/maven-site-plugin-3.x/src/site/apt/maven-3.apt.vm Fri Jul 22 19:30:59 2011
@@ -306,3 +306,19 @@ Using it with Maven 3
     </pluginManagement>
   </build>
 +-----+
+
+* Inheritance of reports
+
+  Maven 2 and Maven 3 works differently when dealing with inheritance of reports
+  that are configured in the old configuration format. In Maven 2 inherited
+  reports are added, whereas in Maven 3 they are replaced.
+
+  Given a multi module build where the parent POM has the <<<index>>> report
+  configured and the child POM has the <<<summary>>> report configured.
+
+  In Maven 2 the child site will have both the <<<index>>> and <<<summary>>>
+  reports.
+
+  In Maven 3 the child site will have only the <<<summary>>> report.
+
+  For more info see {{{http://jira.codehaus.org/browse/MSITE-596}MSITE-596}}.