You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tiles.apache.org by ap...@apache.org on 2009/07/31 21:39:06 UTC

svn commit: r799715 - /tiles/framework/trunk/pom.xml

Author: apetrelli
Date: Fri Jul 31 19:39:05 2009
New Revision: 799715

URL: http://svn.apache.org/viewvc?rev=799715&view=rev
Log:
TILES-149
TILES-318
Both of these bugs are fixed by upgraded to Maven Javadoc plugin 2.6 and using the "aggregate" goal.

Modified:
    tiles/framework/trunk/pom.xml

Modified: tiles/framework/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/pom.xml?rev=799715&r1=799714&r2=799715&view=diff
==============================================================================
--- tiles/framework/trunk/pom.xml (original)
+++ tiles/framework/trunk/pom.xml Fri Jul 31 19:39:05 2009
@@ -184,29 +184,36 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-javadoc-plugin</artifactId>
-                <configuration>
-                    <aggregate>true</aggregate>
-                    <excludePackageNames>org.apache.tiles.test</excludePackageNames>
-                    <links>
-                        <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
-                        <link>http://java.sun.com/j2ee/sdk_1.2.1/techdocs/api</link>
-                        <link>http://commons.apache.org/chain/apidocs</link>
-                        <link>http://commons.apache.org/digester/commons-digester-1.6/docs/api</link>
-                        <link>http://commons.apache.org/logging/commons-logging-1.1/apidocs</link>
-                    </links>
-                    <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
-                    <docletArtifact>
-                        <groupId>gr.spinellis</groupId>
-                        <artifactId>UmlGraph</artifactId>
-                        <version>4.6</version>
-                    </docletArtifact>
-                    <additionalparam>
-                        -inferrel -inferdep -quiet -hide java.*
-                        -collpackages java.util.* -qualify
-                        -postfixpackage -nodefontsize 9
-                        -nodefontpackagesize 7
-                    </additionalparam>
-                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <id>aggregated</id>
+                        <configuration>
+                            <excludePackageNames>org.apache.tiles.test</excludePackageNames>
+                            <links>
+                                <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+                                <link>http://java.sun.com/j2ee/sdk_1.2.1/techdocs/api</link>
+                                <link>http://commons.apache.org/chain/apidocs</link>
+                                <link>http://commons.apache.org/digester/commons-digester-1.6/docs/api</link>
+                                <link>http://commons.apache.org/logging/commons-logging-1.1/apidocs</link>
+                            </links>
+                            <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
+                            <docletArtifact>
+                                <groupId>gr.spinellis</groupId>
+                                <artifactId>UmlGraph</artifactId>
+                                <version>4.6</version>
+                            </docletArtifact>
+                            <additionalparam>
+                                -inferrel -inferdep -quiet -hide java.*
+                                -collpackages java.util.* -qualify
+                                -postfixpackage -nodefontsize 9
+                                -nodefontpackagesize 7
+                            </additionalparam>
+                        </configuration>
+                        <reports>
+                            <report>aggregate</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
             </plugin>
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>