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 2011/10/01 18:09:15 UTC

svn commit: r1178037 - /directory/apacheds/trunk/installers-maven-plugin/pom.xml

Author: felixk
Date: Sat Oct  1 16:09:15 2011
New Revision: 1178037

URL: http://svn.apache.org/viewvc?rev=1178037&view=rev
Log:
Configuration for reports is inside plugin configuration since maven-site-plugin-3.x

Modified:
    directory/apacheds/trunk/installers-maven-plugin/pom.xml

Modified: directory/apacheds/trunk/installers-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/installers-maven-plugin/pom.xml?rev=1178037&r1=1178036&r2=1178037&view=diff
==============================================================================
--- directory/apacheds/trunk/installers-maven-plugin/pom.xml (original)
+++ directory/apacheds/trunk/installers-maven-plugin/pom.xml Sat Oct  1 16:09:15 2011
@@ -122,15 +122,17 @@
           </execution>
         </executions>
       </plugin>
-    </plugins>
-  </build>
-
-  <!-- Generating plugin documentation -->
-  <reporting>
-    <plugins>
       <plugin>
-        <artifactId>maven-plugin-plugin</artifactId>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <configuration>
+          <reportPlugins combine.children="append">
+            <plugin>
+              <artifactId>maven-plugin-plugin</artifactId>
+             </plugin>
+          </reportPlugins>
+        </configuration>
       </plugin>
     </plugins>
-  </reporting>
+  </build>
 </project>