mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
platform -> lang in plugin.xml
This commit is contained in:
parent
80d358f5ba
commit
0408a3571c
@ -10,7 +10,7 @@
|
|||||||
<depends>com.intellij.modules.lang</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Product and plugin compatibility requirements -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<actions>
|
<actions>
|
||||||
<action id="EditorBasics.EditorIllustration"
|
<action id="EditorBasics.EditorIllustration"
|
||||||
|
@ -32,7 +32,6 @@
|
|||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Product and plugin compatibility requirements -->
|
||||||
<depends>com.intellij.modules.lang</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
<!-- Might use java -->
|
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<!-- Register the custom facet extension -->
|
<!-- Register the custom facet extension -->
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<version>0.0.1</version>
|
<version>0.0.1</version>
|
||||||
<vendor email="dummy" url="dummy">dummy</vendor>
|
<vendor email="dummy" url="dummy">dummy</vendor>
|
||||||
|
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<idea-version since-build="131" until-build="193.*"/>
|
<idea-version since-build="131" until-build="193.*"/>
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
<idea-version since-build="191"/>
|
<idea-version since-build="191"/>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Product and plugin compatibility requirements -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<!-- Text to display as description on Preferences/Settings | Plugin page -->
|
<!-- Text to display as description on Preferences/Settings | Plugin page -->
|
||||||
<description>
|
<description>
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
<idea-version since-build="171.0"/>
|
<idea-version since-build="171.0"/>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Product and plugin compatibility requirements -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
<depends>org.jetbrains.kotlin</depends>
|
<depends>org.jetbrains.kotlin</depends>
|
||||||
|
|
||||||
<!-- Description of the plugin. Displayed in the "Plugins" settings dialog and in the
|
<!-- Description of the plugin. Displayed in the "Plugins" settings dialog and in the
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<idea-version since-build="141.0"/>
|
<idea-version since-build="141.0"/>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Product and plugin compatibility requirements -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<defaultLiveTemplatesProvider implementation="MarkdownTemplateProvider"/>
|
<defaultLiveTemplatesProvider implementation="MarkdownTemplateProvider"/>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Product and plugin compatibility requirements -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<project-components>
|
<project-components>
|
||||||
<component>
|
<component>
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Product and plugin compatibility requirements -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<moduleType id="DEMO_MODULE_TYPE" implementationClass="com.intellij.tutorials.module.DemoModuleType"/>
|
<moduleType id="DEMO_MODULE_TYPE" implementationClass="com.intellij.tutorials.module.DemoModuleType"/>
|
||||||
|
@ -16,8 +16,8 @@
|
|||||||
|
|
||||||
<!-- http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html -->
|
<!-- http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html -->
|
||||||
<!-- The unique identifiers of the plugins on which this plugin depends -->
|
<!-- The unique identifiers of the plugins on which this plugin depends -->
|
||||||
<!-- com.intellij.modules.platform is included in every IntelliJ-based IDE, plugin will be available as well -->
|
<!-- com.intellij.modules.lang is included in every IntelliJ-based IDE, plugin will be available as well -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
<!-- Optional dependency on another plugin. If the plugin with the "MySecondPlugin" ID is installed, the contents of mysecondplugin.xml (the format of this file conforms to the format of plugin.xml) will be loaded. -->
|
<!-- Optional dependency on another plugin. If the plugin with the "MySecondPlugin" ID is installed, the contents of mysecondplugin.xml (the format of this file conforms to the format of plugin.xml) will be loaded. -->
|
||||||
<!--<depends optional="true" config-file="custom-plugin.xml">CustomPlugin</depends>-->
|
<!--<depends optional="true" config-file="custom-plugin.xml">CustomPlugin</depends>-->
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<idea-version since-build="172.2103.15"/>
|
<idea-version since-build="172.2103.15"/>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Product and plugin compatibility requirements -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<projectViewPane implementation="org.jetbrains.tutorials.view.pane.ImagesProjectViewPane"/>
|
<projectViewPane implementation="org.jetbrains.tutorials.view.pane.ImagesProjectViewPane"/>
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<description>Illustration of working with Project Wizard</description>
|
<description>Illustration of working with Project Wizard</description>
|
||||||
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<moduleBuilder builderClass="org.jetbrains.tutorials.project.wizard.DemoModuleWizardStep"
|
<moduleBuilder builderClass="org.jetbrains.tutorials.project.wizard.DemoModuleWizardStep"
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<change-notes>Refactor to give users feedback when menu items are selected.</change-notes>
|
<change-notes>Refactor to give users feedback when menu items are selected.</change-notes>
|
||||||
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<actions>
|
<actions>
|
||||||
<!-- Add your actions here -->
|
<!-- Add your actions here -->
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<description>Illustration of working with run configurations</description>
|
<description>Illustration of working with run configurations</description>
|
||||||
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<configurationType implementation="org.jetbrains.tutorials.run.configuration.DemoRunConfigurationType"/>
|
<configurationType implementation="org.jetbrains.tutorials.run.configuration.DemoRunConfigurationType"/>
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
<idea-version since-build="191"/>
|
<idea-version since-build="191"/>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Product and plugin compatibility requirements -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<!-- Add your extensions here -->
|
<!-- Add your extensions here -->
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<idea-version since-build="141.0"/>
|
<idea-version since-build="141.0"/>
|
||||||
|
|
||||||
<!-- Product and plugin compatibility requirements -->
|
<!-- Product and plugin compatibility requirements -->
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<toolWindow id="Sample Calendar" secondary="true" icon="/myToolWindow/plus.png" anchor="right"
|
<toolWindow id="Sample Calendar" secondary="true" icon="/myToolWindow/plus.png" anchor="right"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<description>Tree Structure Provider Demo showing only plain text files</description>
|
<description>Tree Structure Provider Demo showing only plain text files</description>
|
||||||
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
<depends>com.intellij.modules.platform</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<treeStructureProvider implementation="org.jetbrains.tutorials.tree.structure.TextOnlyTreeStructureProvider"/>
|
<treeStructureProvider implementation="org.jetbrains.tutorials.tree.structure.TextOnlyTreeStructureProvider"/>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user