mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
[kotlin demo] fixed package name
This commit is contained in:
parent
410c40f937
commit
51f8197af9
@ -1,5 +1,7 @@
|
||||
// Copyright 2000-2020 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.
|
||||
|
||||
package org.intellij.sdk.kotlin
|
||||
|
||||
import com.intellij.openapi.actionSystem.AnActionEvent
|
||||
import com.intellij.openapi.actionSystem.PlatformDataKeys
|
||||
import com.intellij.openapi.project.DumbAwareAction
|
@ -2,7 +2,7 @@
|
||||
<idea-plugin>
|
||||
|
||||
<!-- Unique identifier of the plugin. Cannot be changed between the plugin versions. -->
|
||||
<id>org.intellij.sdk.kotlinDemo</id>
|
||||
<id>org.intellij.sdk.kotlin</id>
|
||||
|
||||
<!-- Plugin name -->
|
||||
<name>SDK: Kotlin Demo</name>
|
||||
@ -43,7 +43,7 @@
|
||||
<actions>
|
||||
<group id="MyPlugin.GreetingMenu" text="Greeting" description="Greeting menu">
|
||||
<add-to-group group-id="MainMenu" anchor="last"/>
|
||||
<action id="MyPlugin.Hello" class="HelloAction" text="Hello" description="Says hello"/>
|
||||
<action id="MyPlugin.Hello" class="org.intellij.sdk.kotlin.HelloAction" text="Hello" description="Says hello"/>
|
||||
</group>
|
||||
</actions>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user