Moving dev environment to Eclipse v3.1

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@3632 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Philippe Herlin
2005-06-29 20:10:37 +00:00
parent 62a1ae0312
commit 1fe93ebd7d
9 changed files with 627 additions and 443 deletions

View File

@ -2,7 +2,7 @@
<feature
id="net.sourceforge.pmd.eclipse"
label="%feature.label"
version="3.0.2"
version="3.1.0"
provider-name="%feature.provider_name"
image="pmd_logo_small.jpg">
@ -41,6 +41,6 @@
id="net.sourceforge.pmd.eclipse"
download-size="596 038"
install-size="598 016"
version="3.0.2"/>
version="3.1.0"/>
</feature>

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="lib" path="lib/castor-0.9.6-xml.jar"/>

View File

@ -26,10 +26,16 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>net.sourceforge.metrics.builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>net.sourceforge.pmd.eclipse.pmdNature</nature>
<nature>net.sourceforge.metrics.nature</nature>
</natures>
</projectDescription>

File diff suppressed because it is too large Load Diff

View File

@ -2,6 +2,21 @@ Change log for the PMD Eclipse plugin
-------------------------------------
v3.0.2 - xx/06/2005
Runtime
-------
. Fix Bug#1190624 (Completly refactor the CPD feature. see release notes)
Development
-----------
. Continuing the refactoring.
. Forgive "small" commands.
. Use Castor to serialize project properties inside the project itself and no more inside
the workspace .metadata
----------------------------------------------------------------------------------------
v3.0.1 - 07/05/2005
Runtime

View File

@ -6,6 +6,18 @@ IMPORTANT : SINCE v2.0 THE INSTALLATION PROCEDURE HAS BEEN CHANGED.
FOR INSTRUCTIONS.
v3.0RC3 (alias v3.0.2) - xx/06/2005
-----------------------------------
FIXED/UPDATED : CPD report window for Mac users
--------------------------------------------------
Because the bug #1190624 cannot be fixed, the CPD integration has been refactored.
Now CPD can be launched on one project at a time only.
The results are produced in a report file inside the report folder.
The SimpleRenderer is used to render the report.
----------------------------------------------------------------------------------------
v3.0RC2 (alias v3.0.1) - 07/05/2005
-----------------------------------

View File

@ -11,7 +11,7 @@
</appender>
<logger name="net.sourceforge.pmd" additivity="false">
<level value="WARN"/>
<level value="DEBUG"/>
<appender-ref ref="plugin"/>
</logger>

View File

@ -3,7 +3,7 @@
<plugin
id="net.sourceforge.pmd.eclipse"
name="%plugin.name"
version="3.0.2"
version="3.1.0"
provider-name="%plugin.provider"
class="net.sourceforge.pmd.eclipse.PMDPlugin">

File diff suppressed because it is too large Load Diff