Begin to work on pmd plugin 1.9

MPPMD-26 : Use PMD 3.6

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@394404 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier 2006-04-16 00:02:36 +00:00
parent eddeb33002
commit 9c68c99132
2 changed files with 5 additions and 2 deletions

View File

@ -22,7 +22,7 @@
<pomVersion>3</pomVersion> <pomVersion>3</pomVersion>
<id>maven-pmd-plugin</id> <id>maven-pmd-plugin</id>
<name>Maven PMD Plugin</name> <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> <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> <shortDescription>Maven Plugin for PMD</shortDescription>
<versions> <versions>
@ -139,7 +139,7 @@
<dependency> <dependency>
<groupId>pmd</groupId> <groupId>pmd</groupId>
<artifactId>pmd</artifactId> <artifactId>pmd</artifactId>
<version>3.5</version> <version>3.6</version>
<url>http://pmd.sourceforge.net</url> <url>http://pmd.sourceforge.net</url>
</dependency> </dependency>
<dependency> <dependency>

View File

@ -24,6 +24,9 @@
<author email="vmassol@apache.org">Vincent Massol</author> <author email="vmassol@apache.org">Vincent Massol</author>
</properties> </properties>
<body> <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"> <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" 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> <action dev="aheritier" type="add">Add a link on each error to explain it.</action>