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>