1
我已經開發了intellij想法中的一個插件,右鍵點擊項目我得到的插件名稱,但它總是禁用。我怎樣才能啓用該插件。這是我的plugin.xml代碼:Intellij創意插件開發:插件沒有啓用右鍵點擊項目
<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>