You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@any23.apache.org by si...@apache.org on 2012/07/02 11:19:12 UTC

svn commit: r1356130 - /incubator/any23/trunk/pom.xml

Author: simonetripodi
Date: Mon Jul  2 09:19:11 2012
New Revision: 1356130

URL: http://svn.apache.org/viewvc?rev=1356130&view=rev
Log:
javadoc aggregation only when plublishing the site

Modified:
    incubator/any23/trunk/pom.xml

Modified: incubator/any23/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/pom.xml?rev=1356130&r1=1356129&r2=1356130&view=diff
==============================================================================
--- incubator/any23/trunk/pom.xml (original)
+++ incubator/any23/trunk/pom.xml Mon Jul  2 09:19:11 2012
@@ -612,22 +612,6 @@
         </configuration>
       </plugin>
 
-      <!-- Javadoc plugin. -->
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <version>${maven-javadoc-plugin.version}</version>
-        <executions>
-          <execution>
-            <id>aggregate</id>
-            <goals>
-              <goal>aggregate</goal>
-            </goals>
-            <phase>site</phase>
-          </execution>
-        </executions>
-      </plugin>
-
       <!-- Test runner configuration. -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -941,13 +925,15 @@
                   <groupId>org.apache.maven.plugins</groupId>
                   <artifactId>maven-javadoc-plugin</artifactId>
                   <version>${maven-javadoc-plugin.version}</version>
-                  <reportSets>
-                    <reportSet>
-                      <reports>
-                        <report>aggregate</report>
-                      </reports>
-                    </reportSet>
-                  </reportSets>
+                  <executions>
+                    <execution>
+                      <id>aggregate</id>
+                      <goals>
+                        <goal>aggregate</goal>
+                      </goals>
+                      <phase>site</phase>
+                    </execution>
+                  </executions>
                 </plugin>
               </reportPlugins>
             </configuration>