You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ve...@apache.org on 2010/02/04 17:17:15 UTC

svn commit: r906548 - /webservices/axis2/trunk/java/modules/documentation/pom.xml

Author: veithen
Date: Thu Feb  4 16:17:15 2010
New Revision: 906548

URL: http://svn.apache.org/viewvc?rev=906548&view=rev
Log:
Configured maven-project-info-reports-plugin so that it doesn't hang when doing a mvn clean install in the documentation module.

Modified:
    webservices/axis2/trunk/java/modules/documentation/pom.xml

Modified: webservices/axis2/trunk/java/modules/documentation/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/documentation/pom.xml?rev=906548&r1=906547&r2=906548&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/documentation/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/documentation/pom.xml Thu Feb  4 16:17:15 2010
@@ -486,4 +486,17 @@
             </build>
         </profile>
     </profiles>
+    <reporting>
+        <plugins>
+            <plugin>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+                <version>2.1.1</version>
+                <configuration>
+                    <!-- These features are disabled since they cause "mvn site" to hang -->
+                    <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+                    <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
 </project>