mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
41 lines
1.5 KiB
XML
41 lines
1.5 KiB
XML
<!-- Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
|
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
|
|
|
|
<idea-plugin>
|
|
|
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
|
<id>org.intellij.sdk.kotlin</id>
|
|
|
|
<!-- Text to display as name on Settings | Plugin page -->
|
|
<name>SDK: Kotlin Demo</name>
|
|
|
|
<!-- Indicate this plugin can be loaded in all IntelliJ Platform-based products. -->
|
|
<depends>com.intellij.modules.platform</depends>
|
|
|
|
<!-- Text to display as description on Settings | Plugin page -->
|
|
<description>
|
|
<![CDATA[
|
|
Adds a <i>Greeting</i> menu group anchored last in the <b>Main Menu</b>
|
|
]]>
|
|
</description>
|
|
<change-notes>
|
|
<![CDATA[
|
|
<ul>
|
|
<li><b>2.0.0</b> Converted to Gradle project.</li>
|
|
<li><b>1.0</b> Release 2019.1 and earlier.</li>
|
|
</ul>
|
|
]]>
|
|
</change-notes>
|
|
|
|
<!-- Text to display as company information on Settings | Plugin page -->
|
|
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
|
|
|
<actions>
|
|
<group id="MyPlugin.GreetingMenu" text="Greeting" description="Greeting menu">
|
|
<add-to-group group-id="MainMenu" anchor="last"/>
|
|
<action id="MyPlugin.Hello" class="org.intellij.sdk.kotlin.HelloAction" text="Hello" description="Says hello"/>
|
|
</group>
|
|
</actions>
|
|
|
|
</idea-plugin>
|