<idea-plugin>
|
<id>com.yeshi.plugins.generator</id>
|
<name>自动化代码生成器</name>
|
<version>1.0.1</version>
|
<vendor email="support@yourcompany.com" url="http://www.yourcompany.com">椰视科技</vendor>
|
|
<description><![CDATA[
|
运用此插件可以生成服务端的功能代码,包含Dao,Service,后台功能管理界面等
|
]]></description>
|
|
<change-notes><![CDATA[
|
|
]]>
|
</change-notes>
|
|
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
<idea-version since-build="173.0"/>
|
|
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
|
on how to target different products -->
|
<!-- uncomment to enable plugin in all products
|
<depends>com.intellij.modules.lang</depends>
|
-->
|
|
<extensions defaultExtensionNs="com.intellij">
|
<!-- Add your extensions here -->
|
</extensions>
|
|
<actions>
|
<action id="FirstAction" class="com.yeshi.plugins.GenerateModuleCode" text="自动生成服务" description="右键Action">
|
<add-to-group group-id="ProjectViewPopupMenu" anchor="after" relative-to-action="ReplaceInPath"/>
|
</action>
|
</actions>
|
|
</idea-plugin>
|