You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by de...@apache.org on 2014/08/07 09:54:02 UTC

svn commit: r1616432 - /creadur/rat/trunk/pom.xml

Author: dennisl
Date: Thu Aug  7 07:54:02 2014
New Revision: 1616432

URL: http://svn.apache.org/r1616432
Log:
Fall back to maven-pmd-plugin:3.1, since later versions require Java 1.6+.

Modified:
    creadur/rat/trunk/pom.xml

Modified: creadur/rat/trunk/pom.xml
URL: http://svn.apache.org/viewvc/creadur/rat/trunk/pom.xml?rev=1616432&r1=1616431&r2=1616432&view=diff
==============================================================================
--- creadur/rat/trunk/pom.xml (original)
+++ creadur/rat/trunk/pom.xml Thu Aug  7 07:54:02 2014
@@ -202,7 +202,8 @@ agnostic home for software distribution 
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-pmd-plugin</artifactId>
-        <version>3.2</version>
+        <!-- Later versions require Java 1.6+ -->
+        <version>3.1</version>
         <configuration>
           <targetJdk>${javaVersion}</targetJdk>
         </configuration>