You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2014/11/01 13:06:20 UTC

svn commit: r1635934 - /commons/proper/compress/trunk/pom.xml

Author: bodewig
Date: Sat Nov  1 12:06:20 2014
New Revision: 1635934

URL: http://svn.apache.org/r1635934
Log:
override PMD version used by PMD plugin

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

Modified: commons/proper/compress/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/pom.xml?rev=1635934&r1=1635933&r2=1635934&view=diff
==============================================================================
--- commons/proper/compress/trunk/pom.xml (original)
+++ commons/proper/compress/trunk/pom.xml Sat Nov  1 12:06:20 2014
@@ -187,6 +187,19 @@ Unix Compress, DEFLATE and ar, cpio, jar
           </ignorePathsToDelete>
         </configuration>
       </plugin>
+      <!-- use PMD 5.1.3 because of false positives for "unused private method" -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-pmd-plugin</artifactId>
+        <version>3.2</version>
+        <dependencies>
+          <dependency>
+            <groupId>net.sourceforge.pmd</groupId>
+            <artifactId>pmd</artifactId>
+            <version>5.1.3</version>
+          </dependency>
+        </dependencies>
+      </plugin>
     </plugins>
   </build>