mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-29 09:47:50 +08:00
inc comments
This commit is contained in:
parent
29f3810659
commit
368602cf5f
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'org.jetbrains.intellij' version '0.4.10'
|
id 'org.jetbrains.intellij' version '0.4.13'
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'com.intellij.sdk'
|
group 'com.intellij.sdk'
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
|
<!-- Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
||||||
|
|
||||||
<idea-plugin>
|
<idea-plugin>
|
||||||
|
|
||||||
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
||||||
<id>com.intellij.sdk.pycharm</id>
|
<id>com.intellij.sdk.pycharm</id>
|
||||||
|
|
||||||
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
||||||
<name>SDK: PyCharm Sample Project</name>
|
<name>SDK: PyCharm Sample Project</name>
|
||||||
|
|
||||||
<!-- The version of this plugin -->
|
<!-- The version of this plugin -->
|
||||||
<version>0.1.0</version>
|
<version>0.1.0</version>
|
||||||
@ -30,15 +32,15 @@
|
|||||||
<!-- Text to display as company information on Preferences/Settings | Plugin page -->
|
<!-- Text to display as company information on Preferences/Settings | Plugin page -->
|
||||||
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
||||||
|
|
||||||
<actions>
|
<actions>
|
||||||
<!-- Define a new menu group as a last entry in the main menu -->
|
<!-- Define a new menu group as a last entry in the main menu -->
|
||||||
<group id="com.intellij.sdk.pycharm.NewGroupedActions" text="SDK: Plugin" popup="true">
|
<group id="com.intellij.sdk.pycharm.NewGroupedActions" text="SDK: Plugin" popup="true">
|
||||||
<add-to-group group-id="MainMenu" anchor="last"/>
|
<add-to-group group-id="MainMenu" anchor="last"/>
|
||||||
<!-- Add a single action to the new group -->
|
<!-- Add a single action to the new group -->
|
||||||
<action id="com.intellij.sdk.pycharm.PopupDialogAction" class="com.intellij.sdk.pycharm.PopupDialogAction"
|
<action id="com.intellij.sdk.pycharm.PopupDialogAction" class="com.intellij.sdk.pycharm.PopupDialogAction"
|
||||||
text="Pop a Dialog" description="SDK PyCharm basics example" icon="SdkIcons.Sdk_default_icon">
|
text="Pop a Dialog" description="SDK PyCharm basics example" icon="SdkIcons.Sdk_default_icon">
|
||||||
</action>
|
</action>
|
||||||
</group>
|
</group>
|
||||||
</actions>
|
</actions>
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
Loading…
x
Reference in New Issue
Block a user