You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2006/04/16 02:02:38 UTC

svn commit: r394404 - in /maven/maven-1/plugins/trunk/pmd: project.xml xdocs/changes.xml

Author: aheritier
Date: Sat Apr 15 17:02:36 2006
New Revision: 394404

URL: http://svn.apache.org/viewcvs?rev=394404&view=rev
Log:
Begin to work on pmd plugin 1.9
MPPMD-26 : Use PMD 3.6

Modified:
    maven/maven-1/plugins/trunk/pmd/project.xml
    maven/maven-1/plugins/trunk/pmd/xdocs/changes.xml

Modified: maven/maven-1/plugins/trunk/pmd/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/pmd/project.xml?rev=394404&r1=394403&r2=394404&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/pmd/project.xml (original)
+++ maven/maven-1/plugins/trunk/pmd/project.xml Sat Apr 15 17:02:36 2006
@@ -22,7 +22,7 @@
   <pomVersion>3</pomVersion>
   <id>maven-pmd-plugin</id>
   <name>Maven PMD Plugin</name>
-  <currentVersion>1.8</currentVersion>
+  <currentVersion>1.9-SNAPSHOT</currentVersion>
   <description>The Maven PMD plugin is a plugin that wraps the PMD framework (http://pmd.sourceforge.net). PMD is a source checking framework that works by scanning Java source code and looks for potential problems like: unused local variables, empty catch blocks, unused parameters, empty 'if' statements, etc.</description>
   <shortDescription>Maven Plugin for PMD</shortDescription>
   <versions>
@@ -139,7 +139,7 @@
     <dependency>
       <groupId>pmd</groupId>
       <artifactId>pmd</artifactId>
-      <version>3.5</version>
+      <version>3.6</version>
       <url>http://pmd.sourceforge.net</url>
     </dependency>
     <dependency>

Modified: maven/maven-1/plugins/trunk/pmd/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/pmd/xdocs/changes.xml?rev=394404&r1=394403&r2=394404&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/pmd/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/pmd/xdocs/changes.xml Sat Apr 15 17:02:36 2006
@@ -24,6 +24,9 @@
     <author email="vmassol@apache.org">Vincent Massol</author>
   </properties>
   <body>
+    <release version="1.9" date="In SVN">
+      <action dev="aheritier" type="update" issue="MPPMD-26">Upgrade to pmd-3.6.</action>
+    </release>
     <release version="1.8" date="2006-03-27">
       <action dev="aheritier" type="add" issue="MPPMD-19" due-to="Wim Deblauwe">New property "maven.pmd.targetjdk" to define the target JDK.</action>
       <action dev="aheritier" type="add">Add a link on each error to explain it.</action>