You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/03/02 22:12:41 UTC

svn commit: r1296472 - /commons/proper/math/trunk/pom.xml

Author: sebb
Date: Fri Mar  2 21:12:41 2012
New Revision: 1296472

URL: http://svn.apache.org/viewvc?rev=1296472&view=rev
Log:
Allow pmd to be run iteractively; update to latest version

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

Modified: commons/proper/math/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/pom.xml?rev=1296472&r1=1296471&r2=1296472&view=diff
==============================================================================
--- commons/proper/math/trunk/pom.xml (original)
+++ commons/proper/math/trunk/pom.xml Fri Mar  2 21:12:41 2012
@@ -285,6 +285,7 @@
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
     <!-- Allow severity to be overriden by the command-line option -DminSeverity=level -->
     <minSeverity>info</minSeverity>
+    <math.pmd.version>2.7.1</math.pmd.version>
   </properties> 
 
   <build>
@@ -323,6 +324,13 @@
             </execution>
           </executions>
         </plugin>
+      <plugin>
+        <artifactId>maven-pmd-plugin</artifactId>
+        <version>${math.pmd.version}</version>
+        <configuration>
+          <targetJdk>${maven.compile.target}</targetJdk>  
+        </configuration>
+        </plugin>
       </plugins>
       <!-- This section can be dropped once the parent pom is corrected (v22+) -->
       <resources>
@@ -373,7 +381,7 @@
       </plugin>
       <plugin>
         <artifactId>maven-pmd-plugin</artifactId>
-        <version>2.5</version>
+        <version>${math.pmd.version}</version>
         <configuration>
           <targetJdk>${maven.compile.target}</targetJdk>  
         </configuration>