github.com/simonferquel/app@v0.6.1-0.20181012141724-68b7cccf26ac/integrations/intellij/src/main/resources/META-INF/plugin.xml (about) 1 <idea-plugin> 2 <id>com.docker.dockerapp-plugin</id> 3 <name>Docker Application</name> 4 <vendor email="support@docker.com" url="http://www.docker.com">Docker</vendor> 5 6 <description><![CDATA[ 7 Interact with docker applications.<br> 8 ]]></description> 9 10 <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html 11 on how to target different products --> 12 <!-- uncomment to enable plugin in all products 13 <depends>com.intellij.modules.lang</depends> 14 --> 15 16 <extensions defaultExtensionNs="com.intellij"> 17 <!-- Add your extensions here --> 18 </extensions> 19 20 <actions> 21 <group id="DockerApp.MainMenu" text="Docker" description="Docker Application"> 22 <add-to-group group-id="MainMenu" anchor="last"/> 23 <action id="DockerApp.InitApp" class="InitApp" text="New Application..." description="Create a new application package"/> 24 <action id="DockerApp.RenderApp" class="RenderApp" text="Render" description="Render application package"/> 25 <action id="DockerApp.DeployApp" class="DeployApp" text="Deploy" description="Deploy application package to cluster"/> 26 <action id="DockerApp.Settings" class="Settings" text="Settings..." description="Configure deployment"/> 27 <action id="DockerApp.SelectApp" class="SelectApp" text="Select application..." description="Select application package to use"/> 28 </group> 29 </actions> 30 </idea-plugin>