preparing for 4.2.4 release

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/branches/pmd/4.2.x@6594 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Xavier Le Vourch 2008-10-13 03:36:18 +00:00
parent 10f5aa8d69
commit 80a7ece0bc
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
???? - 4.2.4:
October 12, 2008 - 4.2.4:
Fixed bug 1481051 - false + UnusedNullCheckInEquals (and other false positives too)
Fixed bug 1943204 - Ant task: <ruleset> path should be relative to Ant basedir

View File

@ -4,7 +4,7 @@
<groupId>pmd</groupId>
<artifactId>pmd-jdk14</artifactId>
<name>PMD</name>
<version>4.2.4-SNAPSHOT</version>
<version>4.2.4</version>
<description>
<![CDATA[
<p>PMD scans Java source code and looks for potential problems like:</p>

View File

@ -4,7 +4,7 @@
<groupId>pmd</groupId>
<artifactId>pmd</artifactId>
<name>PMD</name>
<version>4.2.4-SNAPSHOT</version>
<version>4.2.4</version>
<description>
<![CDATA[
<p>PMD scans Java source code and looks for potential problems like:</p>

View File

@ -4,7 +4,7 @@
<pomVersion>3</pomVersion>
<id>pmd</id>
<name>PMD</name>
<currentVersion>4.2.4-SNAPSHOT</currentVersion>
<currentVersion>4.2.4</currentVersion>
<organization>
<name>InfoEther</name>
<url>http://pmd.sourceforge.net/</url>

View File

@ -48,7 +48,7 @@ import net.sourceforge.pmd.util.FileFinder;
public class PMD {
public static final String EOL = System.getProperty("line.separator", "\n");
public static final String VERSION = "4.2.4-SNAPSHOT";
public static final String VERSION = "4.2.4";
public static final String EXCLUDE_MARKER = "NOPMD";
private static final Logger LOG = Logger.getLogger(PMD.class.getName());