Author: ruwan Date: Thu Nov 19 11:01:43 2009 New Revision: 882104 URL: http://svn.apache.org/viewvc?rev=882104&view=rev Log: Fixing the site generation with the java docs
Modified: webservices/commons/branches/modules/transport/1.0.0/modules/parent/pom.xml webservices/commons/branches/modules/transport/1.0.0/pom.xml Modified: webservices/commons/branches/modules/transport/1.0.0/modules/parent/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/branches/modules/transport/1.0.0/modules/parent/pom.xml?rev=882104&r1=882103&r2=882104&view=diff ============================================================================== --- webservices/commons/branches/modules/transport/1.0.0/modules/parent/pom.xml (original) +++ webservices/commons/branches/modules/transport/1.0.0/modules/parent/pom.xml Thu Nov 19 11:01:43 2009 @@ -222,6 +222,14 @@ </configuration> </plugin> <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <inherited>true</inherited> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> @@ -360,50 +368,6 @@ </dependency> </dependencies> - <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> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>jdepend-maven-plugin</artifactId> - <version>2.0-beta-1</version> - </plugin> - <plugin> - <artifactId>maven-compiler-plugin</artifactId> - <inherited>true</inherited> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <configuration> - <aggregate>true</aggregate> - </configuration> - <reportSets> - <reportSet> - <reports> - <report>javadoc</report> - </reports> - </reportSet> - </reportSets> - </plugin> - <plugin> - <artifactId>maven-site-plugin</artifactId> - <inherited>false</inherited> - </plugin> - </plugins> - </reporting> <distributionManagement> <repository> <id>apache-repo</id> Modified: webservices/commons/branches/modules/transport/1.0.0/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/branches/modules/transport/1.0.0/pom.xml?rev=882104&r1=882103&r2=882104&view=diff ============================================================================== --- webservices/commons/branches/modules/transport/1.0.0/pom.xml (original) +++ webservices/commons/branches/modules/transport/1.0.0/pom.xml Thu Nov 19 11:01:43 2009 @@ -261,6 +261,14 @@ </configuration> </plugin> <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <inherited>true</inherited> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> @@ -283,4 +291,41 @@ </plugin> </plugins> </build> + <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> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>jdepend-maven-plugin</artifactId> + <version>2.0-beta-1</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <aggregate>true</aggregate> + </configuration> + <reportSets> + <reportSet> + <reports> + <report>javadoc</report> + </reports> + </reportSet> + </reportSets> + </plugin> + <plugin> + <artifactId>maven-site-plugin</artifactId> + <version>2.0-beta-5</version> + <inherited>false</inherited> + </plugin> + </plugins> + </reporting> </project>