You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by el...@apache.org on 2011/04/03 15:30:30 UTC

svn commit: r1088289 - /mina/branches/2.0.3/pom.xml

Author: elecharny
Date: Sun Apr  3 13:30:30 2011
New Revision: 1088289

URL: http://svn.apache.org/viewvc?rev=1088289&view=rev
Log:
Fixed the javadoc plugin phase

Modified:
    mina/branches/2.0.3/pom.xml

Modified: mina/branches/2.0.3/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/2.0.3/pom.xml?rev=1088289&r1=1088288&r2=1088289&view=diff
==============================================================================
--- mina/branches/2.0.3/pom.xml (original)
+++ mina/branches/2.0.3/pom.xml Sun Apr  3 13:30:30 2011
@@ -374,11 +374,14 @@
             <artifactId>maven-javadoc-plugin</artifactId>
             <executions>
               <execution>
-                <phase>install</phase>
+                <phase>package</phase>
 
                 <goals>
-                  <goal>aggregate</goal>
+                  <goal>javadoc</goal>
                 </goals>
+                <configuration>
+                  <aggregate>true</aggregate>
+                </configuration>
               </execution>
             </executions>
           </plugin>