You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by fe...@apache.org on 2010/01/11 16:21:48 UTC

svn commit: r897900 - /directory/installers/trunk/pom.xml

Author: felixk
Date: Mon Jan 11 15:21:48 2010
New Revision: 897900

URL: http://svn.apache.org/viewvc?rev=897900&view=rev
Log:
Fix deprecated configuration for aggregated javadoc reports

Modified:
    directory/installers/trunk/pom.xml

Modified: directory/installers/trunk/pom.xml
URL: http://svn.apache.org/viewvc/directory/installers/trunk/pom.xml?rev=897900&r1=897899&r2=897900&view=diff
==============================================================================
--- directory/installers/trunk/pom.xml (original)
+++ directory/installers/trunk/pom.xml Mon Jan 11 15:21:48 2010
@@ -534,9 +534,14 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
-        <configuration>
-          <aggregate>true</aggregate>
-        </configuration>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>aggregate</report>
+              <report>test-aggregate</report>
+            </reports>
+          </reportSet>
+        </reportSets>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>