Allow pmd to be run iteractively; update to latest version
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1296472 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0c296e28ee
commit
c1dcc48538
10
pom.xml
10
pom.xml
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue