[kotlin demo] fixed package name

This commit is contained in:
Jakub Chrzanowski 2020-03-18 16:37:38 +01:00
parent 410c40f937
commit 51f8197af9
2 changed files with 6 additions and 4 deletions

View File

@ -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. // 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.AnActionEvent
import com.intellij.openapi.actionSystem.PlatformDataKeys import com.intellij.openapi.actionSystem.PlatformDataKeys
import com.intellij.openapi.project.DumbAwareAction import com.intellij.openapi.project.DumbAwareAction

View File

@ -2,7 +2,7 @@
<idea-plugin> <idea-plugin>
<!-- Unique identifier of the plugin. Cannot be changed between the plugin versions. --> <!-- 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 --> <!-- Plugin name -->
<name>SDK: Kotlin Demo</name> <name>SDK: Kotlin Demo</name>
@ -43,7 +43,7 @@
<actions> <actions>
<group id="MyPlugin.GreetingMenu" text="Greeting" description="Greeting menu"> <group id="MyPlugin.GreetingMenu" text="Greeting" description="Greeting menu">
<add-to-group group-id="MainMenu" anchor="last"/> <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> </group>
</actions> </actions>