You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2016/10/21 21:18:14 UTC

svn commit: r1766137 - /commons/sandbox/flatfile/trunk/pom.xml

Author: mbenson
Date: Fri Oct 21 21:18:14 2016
New Revision: 1766137

URL: http://svn.apache.org/viewvc?rev=1766137&view=rev
Log:
format; use last Java 5 compatible version of PMD

Modified:
    commons/sandbox/flatfile/trunk/pom.xml

Modified: commons/sandbox/flatfile/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/flatfile/trunk/pom.xml?rev=1766137&r1=1766136&r2=1766137&view=diff
==============================================================================
--- commons/sandbox/flatfile/trunk/pom.xml (original)
+++ commons/sandbox/flatfile/trunk/pom.xml Fri Oct 21 21:18:14 2016
@@ -82,12 +82,12 @@
       <artifactId>commons-lang3</artifactId>
       <version>3.1</version>
     </dependency>
-  	<dependency>
-  		<groupId>org.apache.commons</groupId>
-  		<artifactId>commons-collections4</artifactId>
-  		<version>4.0</version>
-  	</dependency>
-  	<dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-collections4</artifactId>
+      <version>4.0</version>
+    </dependency>
+    <dependency>
       <groupId>commons-pool</groupId>
       <artifactId>commons-pool</artifactId>
       <version>1.6</version>
@@ -147,12 +147,23 @@
       <plugins>
         <plugin>
           <artifactId>maven-site-plugin</artifactId>
-	  <version>3.3</version>
+          <version>3.3</version>
         </plugin>
         <plugin>
           <groupId>org.codehaus.mojo</groupId>
           <artifactId>antlr-maven-plugin</artifactId>
-	  <version>2.2</version>
+          <version>2.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-pmd-plugin</artifactId>
+          <dependencies>
+            <dependency>
+              <groupId>net.sourceforge.pmd</groupId>
+              <artifactId>pmd</artifactId>
+              <version>5.0.5</version>
+            </dependency>
+          </dependencies>
         </plugin>
       </plugins>
     </pluginManagement>