eclipse plugin reorganization

first of several commits to make sure the plugin can be generated in headless
mode from ant


git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@6502 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Xavier Le Vourch
2008-09-25 23:18:33 +00:00
parent 90264d6cb8
commit c54f51b530
233 changed files with 510 additions and 22 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<projectDescription> <projectDescription>
<name>pmd-eclipse-feature</name> <name>net.sourceforge.pmd.eclipse.feature</name>
<comment></comment> <comment></comment>
<projects> <projects>
</projects> </projects>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<feature <feature
id="net.sourceforge.pmd.eclipse" id="net.sourceforge.pmd.eclipse.feature"
label="%feature.label" label="%feature.label"
version="3.2.4.v200804111600" version="3.2.4.v200804111600"
provider-name="%feature.provider_name" provider-name="%feature.provider_name"
@ -32,28 +32,11 @@
</requires> </requires>
<plugin <plugin
id="net.sourceforge.pmd.eclipse" id="net.sourceforge.pmd.eclipse.plugin"
download-size="0" download-size="0"
install-size="0" install-size="0"
version="3.2.4.v200804111600" version="3.2.4.v200804111600"
unpack="false"/> unpack="false"
/>
<plugin
id="net.sourceforge.pmd.ui"
download-size="0"
install-size="0"
version="3.2.4.v200804111600"/>
<plugin
id="net.sourceforge.pmd.runtime"
download-size="0"
install-size="0"
version="3.2.4.v200804111600"/>
<plugin
id="net.sourceforge.pmd.core"
download-size="0"
install-size="0"
version="4.2.3.v200809021135"/>
</feature> </feature>

View File

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry exported="true" kind="lib" path="lib/asm-3.1.jar"/>
<classpathentry exported="true" kind="lib" path="lib/backport-util-concurrent.jar"/>
<classpathentry exported="true" kind="lib" path="lib/castor-1.1.2.1-xml.jar"/>
<classpathentry exported="true" kind="lib" path="lib/commons-logging-1.1.1.jar"/>
<classpathentry exported="true" kind="lib" path="lib/jaxen-1.1.1.jar"/>
<classpathentry exported="true" kind="lib" path="lib/junit.jar"/>
<classpathentry exported="true" kind="lib" path="lib/log4j-1.2.15.jar"/>
<classpathentry exported="true" kind="lib" path="lib/pmd14-4.2.3.jar"/>
<classpathentry exported="true" kind="lib" path="lib/retroweaver-rt-2.0.5.jar"/>
<classpathentry exported="true" kind="lib" path="lib/xercesImpl-2.6.2.jar"/>
<classpathentry exported="true" kind="lib" path="lib/xmlParserAPIs-2.6.2.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>net.sourceforge.pmd.eclipse.plugin</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,7 @@
#Wed Sep 24 18:03:20 PDT 2008
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2
org.eclipse.jdt.core.compiler.compliance=1.4
org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning
org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning
org.eclipse.jdt.core.compiler.source=1.3

View File

@ -0,0 +1,30 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: net.sourceforge.pmd.eclipse.plugin;singleton:=true
Bundle-Version: 3.2.4.v200804111600
Bundle-Activator: net.sourceforge.pmd.eclipse.plugin.PMDActivator
Require-Bundle: org.eclipse.core.resources;bundle-version="3.4.0",
org.eclipse.core.runtime,
org.eclipse.jdt.core;bundle-version="3.4.0",
org.eclipse.jface.text;bundle-version="3.4.0",
org.eclipse.ui,
org.eclipse.ui.editors;bundle-version="3.4.0",
org.eclipse.ui.ide;bundle-version="3.4.0",
org.eclipse.help
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.4
Bundle-Vendor: %Bundle-Vendor.0
Bundle-ClassPath: lib/asm-3.1.jar,
lib/backport-util-concurrent.jar,
lib/castor-1.1.2.1-xml.jar,
lib/commons-logging-1.1.1.jar,
lib/jaxen-1.1.1.jar,
lib/junit.jar,
lib/log4j-1.2.15.jar,
lib/pmd14-4.2.3.jar,
lib/retroweaver-rt-2.0.5.jar,
lib/xercesImpl-2.6.2.jar,
lib/xmlParserAPIs-2.6.2.jar,
pmd-plugin.jar
Bundle-Localization: plugin

View File

@ -0,0 +1,58 @@
bin.includes = META-INF/,\
plugin.xml,\
lib/asm-3.1.jar,\
lib/backport-util-concurrent.jar,\
lib/castor-1.1.2.1-xml.jar,\
lib/commons-logging-1.1.1.jar,\
lib/jaxen-1.1.1.jar,\
lib/junit.jar,\
lib/log4j-1.2.15.jar,\
lib/pmd14-4.2.3.jar,\
lib/retroweaver-rt-2.0.5.jar,\
lib/xercesImpl-2.6.2.jar,\
lib/xmlParserAPIs-2.6.2.jar,\
messages.properties,\
nl/,\
icons/,\
plugin.properties,\
plugin_bg.properties,\
plugin_fr.properties,\
plugin_it.properties,\
plugin_ru.properties,\
plugin_tr.properties,\
schema/,\
CHANGELOG.txt,\
CREDITS.txt,\
LICENSE.txt,\
PATTERNS LIBRARY LICENSE.txt,\
RELNOTES.txt,\
TODO.txt,\
about.ini,\
toc.xml,\
welcome.xml,\
pmd-plugin.jar
src.includes = icons/,\
META-INF/,\
plugin.xml,\
messages.properties,\
lib/,\
nl/,\
plugin.properties,\
plugin_bg.properties,\
plugin_fr.properties,\
plugin_it.properties,\
plugin_ru.properties,\
plugin_tr.properties,\
CHANGELOG.txt,\
CREDITS.txt,\
LICENSE.txt,\
PATTERNS LIBRARY LICENSE.txt,\
RELNOTES.txt,\
TODO.txt,\
about.ini,\
toc.xml,\
welcome.xml,\
schema/
jars.compile.order = pmd-plugin.jar
source.pmd-plugin.jar = src/
output.pmd-plugin.jar = bin/

View File

Before

Width:  |  Height:  |  Size: 563 B

After

Width:  |  Height:  |  Size: 563 B

View File

Before

Width:  |  Height:  |  Size: 303 B

After

Width:  |  Height:  |  Size: 303 B

View File

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 304 B

View File

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 304 B

View File

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 304 B

Some files were not shown because too many files have changed in this diff Show More