You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wink.apache.org by ma...@apache.org on 2009/08/02 18:04:29 UTC

svn commit: r800103 - /incubator/wink/trunk/pom.xml

Author: martins
Date: Sun Aug  2 16:04:29 2009
New Revision: 800103

URL: http://svn.apache.org/viewvc?rev=800103&view=rev
Log:
Fix maven-javadoc-plugin to use javadoc:aggregate

Modified:
    incubator/wink/trunk/pom.xml

Modified: incubator/wink/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/pom.xml?rev=800103&r1=800102&r2=800103&view=diff
==============================================================================
--- incubator/wink/trunk/pom.xml (original)
+++ incubator/wink/trunk/pom.xml Sun Aug  2 16:04:29 2009
@@ -33,7 +33,7 @@
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <javadoc.aggregate>true</javadoc.aggregate>
-        <javadoc.exclude.patterns>*internal:org.apache.wink.example</javadoc.exclude.patterns>
+        <javadoc.exclude.patterns>*.internal:org.apache.wink.example.*</javadoc.exclude.patterns>
     </properties>
     <modules>
         <module>wink-component-test-support</module>
@@ -481,7 +481,6 @@
                             <excludePackageNames>${javadoc.exclude.patterns}</excludePackageNames>
                             <maxmemory>1024m</maxmemory>
                             <minmemory>512m</minmemory>
-                            <aggregate>${javadoc.aggregate}</aggregate>
                             <groups>
                                 <group>
                                     <title>Common Packages</title>
@@ -508,7 +507,7 @@
                         <executions>
                             <execution>
                                 <goals>
-                                    <goal>javadoc</goal>
+                                    <goal>aggregate</goal>
                                 </goals>
                                 <phase>package</phase>
                             </execution>