Updated to JUnit 3.8.2

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@4277 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Tom Copeland
2006-03-05 03:30:01 +00:00
parent e588b6f905
commit 85b4fe876d
3 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
JAVA_HOME=/usr/local/jdk1.3.1_11 && export JAVA_HOME
CLASSPATH=$CLASSPATH:/usr/local/junit3.8.1/junit.jar && export CLASSPATH
CLASSPATH=$CLASSPATH:/usr/local/junit/junit.jar && export CLASSPATH
ant clean
JAVA_HOME=/usr/local/java && export JAVA_HOME

View File

@ -27,6 +27,7 @@ Rewrote AvoidCallingFinalize in Java; fixed bug and runs much faster, too.
Uploaded ruleset schema to http://pmd.sf.net/ruleset_xml_schema.xsd
UseIndexOfChar now catches cases involving lastIndexOf.
Rules are now run in the order in which they're listed in a ruleset file. Internally, they're now stored in a List vs a Set, and RuleSet.getRules() now returns a Collection.
Upgraded to JUnit version 3.8.2.
***** TODO: remove deprecated printToConsole element from PMDTask

View File

@ -10,7 +10,7 @@
<section name="Compiling PMD">
<p>
First, you'll need to download and install <a href="http://ant.apache.org/bindownload.cgi">Ant</a> 1.6
and <a href="http://www.junit.org/">JUnit</a> 3.8.1. I put the junit jar file in my ANT_HOME/lib/
and <a href="http://www.junit.org/">JUnit</a> 3.8.2. I put the junit jar file in my ANT_HOME/lib/
directory and all was well, your mileage may vary.</p>
<p>
Now you'll need to either check out the source code or download the latest source release.