2002-07-17 16:51:05 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<plugin
|
|
|
|
id="net.sourceforge.pmd.eclipse"
|
|
|
|
name="pmd-eclipse Plug-in"
|
|
|
|
version="0.1.0"
|
|
|
|
provider-name="PMD"
|
|
|
|
class="net.sourceforge.pmd.eclipse.PMDPlugin">
|
|
|
|
|
|
|
|
<runtime>
|
|
|
|
<library name="pmd-eclipse.jar">
|
|
|
|
<export name="*"/>
|
|
|
|
</library>
|
2002-07-31 15:54:00 +00:00
|
|
|
<library name="lib/pmd-0.8.jar"/>
|
2002-07-17 16:51:05 +00:00
|
|
|
</runtime>
|
|
|
|
<requires>
|
|
|
|
<import plugin="org.eclipse.core.resources"/>
|
2002-08-09 00:22:40 +00:00
|
|
|
<import plugin="org.eclipse.core.runtime"/>
|
|
|
|
<import plugin="org.eclipse.swt"/>
|
2002-07-17 16:51:05 +00:00
|
|
|
<import plugin="org.eclipse.ui"/>
|
|
|
|
<import plugin="org.apache.xerces"/>
|
|
|
|
</requires>
|
|
|
|
|
|
|
|
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.ui.actionSets">
|
|
|
|
<actionSet
|
|
|
|
label="Run PMD"
|
|
|
|
visible="true"
|
|
|
|
id="net.sourceforge.pmd.eclipse.actionSet">
|
|
|
|
<menu
|
|
|
|
label="&PMD"
|
|
|
|
id="sampleMenu">
|
|
|
|
<separator
|
|
|
|
name="sampleGroup">
|
|
|
|
</separator>
|
|
|
|
</menu>
|
|
|
|
<action
|
|
|
|
label="&PMD"
|
2002-07-17 17:04:08 +00:00
|
|
|
icon="icons/pmd-icon-16.gif"
|
2002-07-17 16:51:05 +00:00
|
|
|
tooltip="Run PMD"
|
|
|
|
class="net.sourceforge.pmd.eclipse.actions.PMDAction"
|
|
|
|
menubarPath="sampleMenu/sampleGroup"
|
|
|
|
toolbarPath="sampleGroup"
|
|
|
|
id="net.sourceforge.pmd.eclipse.actions.PMDAction">
|
|
|
|
</action>
|
|
|
|
</actionSet>
|
|
|
|
</extension>
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.ui.perspectiveExtensions">
|
|
|
|
<perspectiveExtension
|
|
|
|
targetID="org.eclipse.ui.resourcePerspective">
|
|
|
|
<actionSet
|
|
|
|
id="net.sourceforge.pmd.eclipse.actionSet">
|
|
|
|
</actionSet>
|
|
|
|
</perspectiveExtension>
|
|
|
|
</extension>
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.ui.preferencePages">
|
|
|
|
<page
|
|
|
|
name="PMD"
|
|
|
|
class="net.sourceforge.pmd.eclipse.preferences.PMDPreferencePage"
|
|
|
|
id="net.sourceforge.pmd.eclipse.preferences.PMDPreferencePage">
|
|
|
|
</page>
|
|
|
|
</extension>
|
|
|
|
|
|
|
|
</plugin>
|