preparing for 4.2.2 release
git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/branches/pmd/4.2.x@6134 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
parent
68ff19de08
commit
823d3447c8
@ -1,4 +1,4 @@
|
|||||||
???? - 4.2.2:
|
May 20, 2008 - 4.2.2:
|
||||||
|
|
||||||
Fixed false positive in UnusedImports: javadoc comments are parsed to check @see and other tags
|
Fixed false positive in UnusedImports: javadoc comments are parsed to check @see and other tags
|
||||||
Fixed parsing bug: constant fields in annotation classes
|
Fixed parsing bug: constant fields in annotation classes
|
||||||
|
@ -71,6 +71,7 @@ for 'pmd-repo' must be defined in ~/.m2/settings.xml
|
|||||||
|
|
||||||
cd ~/pmd/pmd/
|
cd ~/pmd/pmd/
|
||||||
update the "download" and "what's new" link in navigation.xml
|
update the "download" and "what's new" link in navigation.xml
|
||||||
|
update date and changelog links in project.xml (recent releases section)
|
||||||
./docs.sh all
|
./docs.sh all
|
||||||
./docs.sh upload
|
./docs.sh upload
|
||||||
|
|
||||||
|
@ -63,9 +63,9 @@ read RESP;
|
|||||||
if [ "$RESP" = "yes" ]; then
|
if [ "$RESP" = "yes" ]; then
|
||||||
echo
|
echo
|
||||||
echo "Tagging release using"
|
echo "Tagging release using"
|
||||||
echo "svn copy -m \"$version release tag\" https://pmd.svn.sourceforge.net/svnroot/pmd/trunk/pmd https://pmd.svn.sourceforge.net/svnroot/pmd/tags/pmd/pmd_release_$release_tag"
|
echo "svn copy -m \"$version release tag\" https://pmd.svn.sourceforge.net/svnroot/pmd/branches/pmd/4.2.x https://pmd.svn.sourceforge.net/svnroot/pmd/tags/pmd/pmd_release_$release_tag"
|
||||||
echo
|
echo
|
||||||
svn copy -m "$version release tag" https://pmd.svn.sourceforge.net/svnroot/pmd/trunk/pmd https://pmd.svn.sourceforge.net/svnroot/pmd/tags/pmd/pmd_release_$release_tag
|
svn copy -m "$version release tag" https://pmd.svn.sourceforge.net/svnroot/pmd/branches/pmd/4.2.x https://pmd.svn.sourceforge.net/svnroot/pmd/tags/pmd/pmd_release_$release_tag
|
||||||
else
|
else
|
||||||
echo
|
echo
|
||||||
echo "Skipping svn tag!!!"
|
echo "Skipping svn tag!!!"
|
||||||
|
@ -48,7 +48,7 @@ import net.sourceforge.pmd.util.FileFinder;
|
|||||||
|
|
||||||
public class PMD {
|
public class PMD {
|
||||||
public static final String EOL = System.getProperty("line.separator", "\n");
|
public static final String EOL = System.getProperty("line.separator", "\n");
|
||||||
public static final String VERSION = "4.2.2-SNAPSHOT";
|
public static final String VERSION = "4.2.2";
|
||||||
public static final String EXCLUDE_MARKER = "NOPMD";
|
public static final String EXCLUDE_MARKER = "NOPMD";
|
||||||
|
|
||||||
private static final Logger LOG = Logger.getLogger(PMD.class.getName());
|
private static final Logger LOG = Logger.getLogger(PMD.class.getName());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user