Author: hboutemy Date: Mon Jun 20 23:12:45 2011 New Revision: 1137820 URL: http://svn.apache.org/viewvc?rev=1137820&view=rev Log: [MPOM-14] configured reporting to be Java 5 compatible
Modified: maven/pom/trunk/maven/pom.xml Modified: maven/pom/trunk/maven/pom.xml URL: http://svn.apache.org/viewvc/maven/pom/trunk/maven/pom.xml?rev=1137820&r1=1137819&r2=1137820&view=diff ============================================================================== --- maven/pom/trunk/maven/pom.xml (original) +++ maven/pom/trunk/maven/pom.xml Mon Jun 20 23:12:45 2011 @@ -620,6 +620,11 @@ under the License. <target>1.5</target> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <version>2.3</version> + </plugin> </plugins> </pluginManagement> </build> @@ -661,8 +666,12 @@ under the License. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> - <version>2.4</version> + <version>2.5</version> <configuration> + <targetJdk>1.5</targetJdk> + <rulesets> + <ruleset>rulesets/maven.xml</ruleset> + </rulesets> <excludeRoots> <excludeRoot>${project.build.directory}/generated-sources/modello</excludeRoot> <excludeRoot>${project.build.directory}/generated-sources/plugin</excludeRoot> @@ -715,7 +724,7 @@ under the License. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> - <version>2.5</version> + <version>2.6</version> <configuration> <configLocation>config/maven_checks.xml</configLocation> <headerLocation>config/maven-header.txt</headerLocation> @@ -724,11 +733,11 @@ under the License. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> - <version>2.4</version> + <version>2.5</version> <configuration> + <targetJdk>1.5</targetJdk> <rulesets> - <!-- TODO: when upgrading to the next release of PMD, this can be changed to /rulesets/maven.xml --> - <ruleset>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml</ruleset> + <ruleset>rulesets/maven.xml</ruleset> </rulesets> <excludeRoots> <excludeRoot>${project.build.directory}/generated-sources/modello</excludeRoot>