我已经在 intellij idea 中开发了一个插件,右键单击项目我得到了该插件名称,但它总是被禁用。如何启用该插件。这是我的 plugin.xml 代码:
<actions>
<group id="GenerateCRUDAction.GenerateCRUD" text="_GenerateCRUD" description="GenerateCRUD" popup="true">
<action id="generateCrud" class="com.im.ui.crud.GenerateCrudAction" text="generateCrud"
description="generateCrud action">
</action>
<add-to-group group-id="ProjectViewPopupMenuRunGroup" anchor="last"/>
</group>
</actions>