[Jarspy-commits] CVS: JarSpy/META-INF plugin.xml,NONE,1.1
Status: Beta
Brought to you by:
brown_j
|
From: Jeff B. <br...@us...> - 2003-01-25 03:44:55
|
Update of /cvsroot/jarspy/JarSpy/META-INF
In directory sc8-pr-cvs1:/tmp/cvs-serv17677/META-INF
Added Files:
plugin.xml
Log Message:
initial stab at IntelliJ IDEA plugin
--- NEW FILE: plugin.xml ---
<idea-plugin>
<!-- Plugin name -->
<name>JarSpyPlugin</name>
<!-- Description -->
<description>JarSpy Plugin</description>
<!-- Plugin version -->
<version>1.0</version>
<!-- Plugin's vendor -->
<vendor>Jeff Brown</vendor>
<!-- Minimum and maximum IDEA version plugin is supposed to work with -->
<idea-version min="3.0" max="3.1"/>
<project-components>
<component>
<implementation-class>com.ociweb.jarspy.intellij.plugin.JarSpyIntelliJPlugin</implementation-class>
<interface-class>com.ociweb.jarspy.intellij.plugin.JarSpyIntelliJPlugin</interface-class>
</component>
</project-components>
<application-components>
<component>
<implementation-class>com.ociweb.jarspy.intellij.plugin.ConfigComponent</implementation-class>
</component>
</application-components>
<!-- Component's actions -->
<actions>
<action id="JarSpy.JarSpy" class="com.ociweb.jarspy.intellij.plugin.JarSpyIntelliJPluginAction"
text="Inspect With JarSpy" description="JarSpy Plugin"/>
<group>
<reference id="JarSpy.JarSpy"/>
<add-to-group group-id="ProjectViewPopupMenu" anchor="last"/>
</group>
</actions>
</idea-plugin>
|