Releasing v2.1.0

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@3043 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Philippe Herlin
2004-11-21 22:32:27 +00:00
parent f9e6482ae8
commit af66f36e99
9 changed files with 57 additions and 9 deletions

View File

@ -2,7 +2,7 @@
<feature
id="net.sourceforge.pmd.eclipse"
label="%feature.label"
version="2.0.5.v3"
version="2.1.0.v3"
provider-name="%feature.provider_name"
image="pmd_logo_small.jpg">
@ -35,12 +35,18 @@
id="net.sourceforge.pmd.core"
download-size="0"
install-size="0"
version="1.8.0.v3"/>
version="2.0.1.v3"/>
<plugin
id="net.sourceforge.pmd.eclipse"
download-size="0"
install-size="0"
version="2.0.5.v3"/>
version="2.1.0.v3"/>
<plugin
id="org.apache.xerces"
download-size="0"
install-size="0"
version="2.6.2"/>
</feature>

View File

@ -2,7 +2,7 @@
<classpath>
<classpathentry exported="true" kind="lib" path="lib/jaxen-core-1.0-fcs.jar"/>
<classpathentry exported="true" kind="lib" path="lib/saxpath-1.0-fcs.jar"/>
<classpathentry exported="true" kind="lib" path="lib/pmd-1.9.jar"/>
<classpathentry exported="true" kind="lib" path="lib/pmd-2.0.jar"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>

Binary file not shown.

View File

@ -3,7 +3,7 @@
<plugin
id="net.sourceforge.pmd.core"
name="%plugin.name"
version="1.9.0.v3"
version="2.0.1.v3"
provider-name="%plugin.provider">
<runtime>
@ -13,7 +13,7 @@
<library name="lib/saxpath-1.0-fcs.jar">
<export name="*"/>
</library>
<library name="lib/pmd-1.9.jar">
<library name="lib/pmd-2.0.jar">
<export name="*"/>
</library>
</runtime>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="src/"/>
<classpathentry kind="lib" path="lib/log4j-1.2.8.jar"/>
<classpathentry kind="lib" path="lib/commons-logging.jar"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>

View File

@ -1,2 +1,3 @@
pmd-eclipse.jar
pmd-eclipse-*.zip
refactoring

View File

@ -2,6 +2,42 @@ Change log for the PMD Eclipse plugin
-------------------------------------
v2.0.7 - xx/xx/2004
Runtime
-------
. update to PMD v2.0
. update the icons (thanks to Ebu)
. fix error in the fragment how to
Development
-----------
. begin the refactoring; apply MVC to GUIs; apply Command and CommandProcessor
patterns for PMD and Eclipse resources operations.
. Before generalizing the refactoring, test on the property page.
----------------------------------------------------------------------------------------
v2.0.6 - xx/07/2004
Runtime
-------
. fix DOMSerializer class not found.
-> Package Xerces as an Eclipse feature because SUN JDK 1.4 packages an incomplete
Xerces implementation
----------------------------------------------------------------------------------------
v2.0.5 - 30/06/2004
Runtime
-------
. Upgrading to PMD v1.8
----------------------------------------------------------------------------------------
v2.0.4 - 29/04/2004
Runtime

View File

@ -1,3 +1,7 @@
Plans
-----
- improving CPD support (develop a cpd view for cpd reports)
- checking files only under project source directories
- provide a multiline editor to modify rules properties
- force user to enter comments when reviewing a violation

View File

@ -3,7 +3,7 @@
<plugin
id="net.sourceforge.pmd.eclipse"
name="%plugin.name"
version="2.0.5.v3"
version="2.1.0.v3"
provider-name="%plugin.provider"
class="net.sourceforge.pmd.eclipse.PMDPlugin">
@ -24,8 +24,9 @@
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.swt"/>
<import plugin="org.eclipse.jdt.core"/>
<import plugin="net.sourceforge.pmd.core"/>
<import plugin="org.eclipse.core.runtime"/>
<import plugin="org.apache.xerces"/>
<import plugin="net.sourceforge.pmd.core"/>
</requires>