Author: veithen Date: Sat Jun 18 10:17:58 2011 New Revision: 1137159 URL: http://svn.apache.org/viewvc?rev=1137159&view=rev Log: Only generate the reports that are actually referenced in the site.
Modified: axis/axis2/java/core/trunk/pom.xml Modified: axis/axis2/java/core/trunk/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/pom.xml?rev=1137159&r1=1137158&r2=1137159&view=diff ============================================================================== --- axis/axis2/java/core/trunk/pom.xml (original) +++ axis/axis2/java/core/trunk/pom.xml Sat Jun 18 10:17:58 2011 @@ -660,11 +660,15 @@ <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> + <reportSets> + <reportSet> + <reports> + <report>issue-tracking</report> + <report>mailing-list</report> + <report>project-team</report> + </reports> + </reportSet> + </reportSets> </plugin> </plugins> </reporting>