You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2008/03/09 12:44:51 UTC

svn commit: r635222 - /commons/proper/codec/trunk/pom.xml

Author: niallp
Date: Sun Mar  9 04:44:46 2008
New Revision: 635222

URL: http://svn.apache.org/viewvc?rev=635222&view=rev
Log:
Specify report plugin versions and add cobertura, pmd and findbugs reports (as per m1 build)

Modified:
    commons/proper/codec/trunk/pom.xml

Modified: commons/proper/codec/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/pom.xml?rev=635222&r1=635221&r2=635222&view=diff
==============================================================================
--- commons/proper/codec/trunk/pom.xml (original)
+++ commons/proper/codec/trunk/pom.xml Sun Mar  9 04:44:46 2008
@@ -201,6 +201,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-changes-plugin</artifactId>
+          <version>2.0-beta-3</version>
           <configuration>
             <xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
             <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
@@ -216,10 +217,26 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-checkstyle-plugin</artifactId>
+          <version>2.1</version>
           <configuration>
             <configLocation>checkstyle.xml</configLocation>
             <enableRulesSummary>false</enableRulesSummary>
           </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>cobertura-maven-plugin</artifactId>
+          <version>2.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-pmd-plugin</artifactId>
+          <version>2.3</version>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>findbugs-maven-plugin</artifactId>
+          <version>1.1.1</version>
         </plugin>
       </plugins>
     </reporting>