mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-30 02:07:50 +08:00
Code Samples: cleanup plugin.xml
This commit is contained in:
parent
c19be9cb7b
commit
448ac5e1c0
@ -4,26 +4,11 @@
|
|||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<vendor email="support@jetbrains.com" url="http://www.jetbrains.com">JetBrains</vendor>
|
<vendor email="support@jetbrains.com" url="http://www.jetbrains.com">JetBrains</vendor>
|
||||||
|
|
||||||
<description>Illustration of Editor's basics</description>
|
<description>Illustration of various basic Editor APIs</description>
|
||||||
|
|
||||||
<change-notes>Initial commit</change-notes>
|
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
<depends>com.intellij.modules.lang</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
|
||||||
<!-- Add your extensions here -->
|
|
||||||
</extensions>
|
|
||||||
|
|
||||||
<application-components>
|
|
||||||
<!-- Add your application components here -->
|
|
||||||
</application-components>
|
|
||||||
|
|
||||||
<project-components>
|
|
||||||
<!-- Add your project components here -->
|
|
||||||
</project-components>
|
|
||||||
|
|
||||||
<actions>
|
<actions>
|
||||||
<action id="EditorBasics.EditorIllustration"
|
<action id="EditorBasics.EditorIllustration"
|
||||||
class="org.jetbrains.tutorials.editor.basics.EditorIllustration"
|
class="org.jetbrains.tutorials.editor.basics.EditorIllustration"
|
||||||
|
@ -2,35 +2,14 @@
|
|||||||
<id>com.intellij.tutorials.facet</id>
|
<id>com.intellij.tutorials.facet</id>
|
||||||
<name>Facet Demo</name>
|
<name>Facet Demo</name>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<vendor email="support@jetbrains.com" url="http://www.yourcompany.com">JetBrains</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<description>Basic example of working with facets</description>
|
<description>Basic example of adding support for custom Facets</description>
|
||||||
|
|
||||||
<change-notes>Initial commit</change-notes>
|
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
|
|
||||||
on how to target different products -->
|
|
||||||
<!-- uncomment to enable plugin in all products
|
|
||||||
<depends>com.intellij.modules.lang</depends>
|
|
||||||
-->
|
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<facetType implementation="com.intellij.tutorials.facet.DemoFacetType"/>
|
<facetType implementation="com.intellij.tutorials.facet.DemoFacetType"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
<application-components>
|
|
||||||
<!-- Add your application components here -->
|
|
||||||
</application-components>
|
|
||||||
|
|
||||||
<project-components>
|
|
||||||
<!-- Add your project components here -->
|
|
||||||
</project-components>
|
|
||||||
|
|
||||||
<actions>
|
|
||||||
<!-- Add your actions here -->
|
|
||||||
</actions>
|
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
@ -2,35 +2,14 @@
|
|||||||
<id>com.intellij.demo.framework</id>
|
<id>com.intellij.demo.framework</id>
|
||||||
<name>Framework example</name>
|
<name>Framework example</name>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<vendor email="support@yourcompany.com" url="http://www.yourcompany.com">YourCompany</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<description>Framework support tutorial</description>
|
<description>Demonstrates basic Framework support with custom Configurable</description>
|
||||||
|
|
||||||
<change-notes>Initial commit</change-notes>
|
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
|
|
||||||
on how to target different products -->
|
|
||||||
<!-- uncomment to enable plugin in all products
|
|
||||||
<depends>com.intellij.modules.lang</depends>
|
|
||||||
-->
|
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<framework.type implementation="com.intellij.tutorials.framework.DemoFramework"/>
|
<framework.type implementation="com.intellij.tutorials.framework.DemoFramework"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
<application-components>
|
|
||||||
<!-- Add your application components here -->
|
|
||||||
</application-components>
|
|
||||||
|
|
||||||
<project-components>
|
|
||||||
<!-- Add your project components here -->
|
|
||||||
</project-components>
|
|
||||||
|
|
||||||
<actions>
|
|
||||||
<!-- Add your actions here -->
|
|
||||||
</actions>
|
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
@ -2,29 +2,14 @@
|
|||||||
<id>com.intellij.tutorials.inspection</id>
|
<id>com.intellij.tutorials.inspection</id>
|
||||||
<name>Inspection Demo</name>
|
<name>Inspection Demo</name>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<vendor email="support@jetbrains.com" url="http://www.jetbrains.com">JetBrains</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<description>Basic example of working with code inspections</description>
|
<description>Basic example of working with code inspections</description>
|
||||||
|
|
||||||
<change-notes>Initial commit</change-notes>
|
|
||||||
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<inspectionToolProvider implementation="com.intellij.tutorials.inspection.DemoInspectionToolProvider"/>
|
<inspectionToolProvider implementation="com.intellij.tutorials.inspection.DemoInspectionToolProvider"/>
|
||||||
|
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
<application-components>
|
|
||||||
<!-- Add your application components here -->
|
|
||||||
</application-components>
|
|
||||||
|
|
||||||
<project-components>
|
|
||||||
<!-- Add your project components here -->
|
|
||||||
</project-components>
|
|
||||||
|
|
||||||
<actions>
|
|
||||||
<!-- Add your actions here -->
|
|
||||||
</actions>
|
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
@ -1,37 +1,17 @@
|
|||||||
<idea-plugin>
|
<idea-plugin>
|
||||||
<id>live_templates</id>
|
<id>live_templates</id>
|
||||||
<name>live_templates</name>
|
<name>Live Templates</name>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<vendor email="support@yourcompany.com" url="http://www.yourcompany.com">YourCompany</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<description><![CDATA[
|
<description>Provides live templates for Markdown language</description>
|
||||||
Enter short description for your plugin here.<br>
|
|
||||||
<em>most HTML tags may be used</em>
|
|
||||||
]]></description>
|
|
||||||
|
|
||||||
<change-notes><![CDATA[
|
|
||||||
Add change notes here.<br>
|
|
||||||
<em>most HTML tags may be used</em>
|
|
||||||
]]>
|
|
||||||
</change-notes>
|
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
||||||
<idea-version since-build="141.0"/>
|
<idea-version since-build="141.0"/>
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
|
|
||||||
on how to target different products -->
|
|
||||||
<!-- uncomment to enable plugin in all products
|
|
||||||
<depends>com.intellij.modules.lang</depends>
|
|
||||||
-->
|
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<defaultLiveTemplatesProvider implementation="MarkdownTemplateProvider"/>
|
<defaultLiveTemplatesProvider implementation="MarkdownTemplateProvider"/>
|
||||||
<liveTemplateContext implementation="MarkdownContext"/>
|
<liveTemplateContext implementation="MarkdownContext"/>
|
||||||
|
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
<actions>
|
|
||||||
<!-- Add your actions here -->
|
|
||||||
</actions>
|
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
@ -1,29 +1,18 @@
|
|||||||
<idea-plugin>
|
<idea-plugin>
|
||||||
<name>max_opened_projects</name>
|
<name>Maximum Open Projects</name>
|
||||||
<description>short description of the plugin</description>
|
<description>Shows warning dialog when the maximum allowed number of open projects is exceeded</description>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<vendor>YourCompany</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
<idea-version since-build="8000"/>
|
<idea-version since-build="131"/>
|
||||||
|
|
||||||
<application-components>
|
|
||||||
<!-- Add your application components here -->
|
|
||||||
</application-components>
|
|
||||||
|
|
||||||
<project-components>
|
<project-components>
|
||||||
<!-- Add your project components here -->
|
|
||||||
<component>
|
<component>
|
||||||
<implementation-class>MyPackage.MaxProject</implementation-class>
|
<implementation-class>MyPackage.MaxProject</implementation-class>
|
||||||
</component>
|
</component>
|
||||||
</project-components>
|
</project-components>
|
||||||
|
|
||||||
<actions>
|
|
||||||
<!-- Add your actions here -->
|
|
||||||
</actions>
|
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<!-- Add your extensions here -->
|
<applicationService serviceInterface="MyPackage.MyCounter"
|
||||||
<applicationService serviceInterface="MyPackage.MyCounter" serviceImplementation="MyPackage.MyCounter">
|
serviceImplementation="MyPackage.MyCounter"/>
|
||||||
|
|
||||||
</applicationService>
|
|
||||||
</extensions>
|
</extensions>
|
||||||
</idea-plugin>
|
</idea-plugin>
|
@ -2,35 +2,14 @@
|
|||||||
<id>com.intellij.tutorials.module</id>
|
<id>com.intellij.tutorials.module</id>
|
||||||
<name>Module Type Demo</name>
|
<name>Module Type Demo</name>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<vendor email="support@jetbrains.com" url="http://www.jetbrains.com">JetBrains</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<description>Basic example of working with module types</description>
|
<description>Basic example of working with module types</description>
|
||||||
|
|
||||||
<change-notes>Initial commit</change-notes>
|
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
|
|
||||||
on how to target different products -->
|
|
||||||
<!-- uncomment to enable plugin in all products
|
|
||||||
<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"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
<application-components>
|
|
||||||
<!-- Add your application components here -->
|
|
||||||
</application-components>
|
|
||||||
|
|
||||||
<project-components>
|
|
||||||
<!-- Add your project components here -->
|
|
||||||
</project-components>
|
|
||||||
|
|
||||||
<actions>
|
|
||||||
<!-- Add your actions here -->
|
|
||||||
</actions>
|
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
@ -2,28 +2,13 @@
|
|||||||
<id>org.jetbrains.plugins.sample.ProjectModel</id>
|
<id>org.jetbrains.plugins.sample.ProjectModel</id>
|
||||||
<name>Project Model</name>
|
<name>Project Model</name>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<vendor email="support@jetbrains.com" url="http://www.jetbrains.com">JetBrains</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<description>Project model illustration</description>
|
<description>Demonstrates various aspects of interacting with project model</description>
|
||||||
|
|
||||||
<change-notes>Initial commit</change-notes>
|
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
<depends>com.intellij.modules.lang</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
|
||||||
<!-- Add your extensions here -->
|
|
||||||
</extensions>
|
|
||||||
|
|
||||||
<application-components>
|
|
||||||
<!-- Add your application components here -->
|
|
||||||
</application-components>
|
|
||||||
|
|
||||||
<project-components>
|
|
||||||
<!-- Add your project components here -->
|
|
||||||
</project-components>
|
|
||||||
|
|
||||||
<actions>
|
<actions>
|
||||||
<action id="ProjectModel.SourceRoots" class="com.intellij.tutorials.project.model.ShowSourceRootsActions"
|
<action id="ProjectModel.SourceRoots" class="com.intellij.tutorials.project.model.ShowSourceRootsActions"
|
||||||
text="Show Source Roots"
|
text="Show Source Roots"
|
||||||
|
@ -2,13 +2,10 @@
|
|||||||
<id>org.jetbrains.plugins.sample.ProjectViewPane</id>
|
<id>org.jetbrains.plugins.sample.ProjectViewPane</id>
|
||||||
<name>Project View Pane Demo</name>
|
<name>Project View Pane Demo</name>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<vendor email="support@jetbrains.com" url="http://www.jetbrains.com">JetBrains</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<description>Project View Pane Demo</description>
|
<description>Project View Pane Demo listing only image files</description>
|
||||||
|
|
||||||
<change-notes>Initial commit</change-notes>
|
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
<depends>com.intellij.modules.lang</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
@ -16,15 +13,4 @@
|
|||||||
<projectViewPane implementation="org.jetbrains.tutorials.view.pane.ImagesProjectViewPane"/>
|
<projectViewPane implementation="org.jetbrains.tutorials.view.pane.ImagesProjectViewPane"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
<application-components>
|
|
||||||
<!-- Add your application components here -->
|
|
||||||
</application-components>
|
|
||||||
|
|
||||||
<project-components>
|
|
||||||
<!-- Add your project components here -->
|
|
||||||
</project-components>
|
|
||||||
|
|
||||||
<actions>
|
|
||||||
<!-- Add your actions here -->
|
|
||||||
</actions>
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
@ -2,32 +2,17 @@
|
|||||||
<id>org.jetbrains.tutorials.ProjectWizard</id>
|
<id>org.jetbrains.tutorials.ProjectWizard</id>
|
||||||
<name>Project Wizard Demo</name>
|
<name>Project Wizard Demo</name>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<vendor email="support@jetbrains.com" url="http://www.jetbrains.com">JetBrains</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<description>Illustration of working with Project Wizard</description>
|
<description>Illustration of working with Project Wizard</description>
|
||||||
|
|
||||||
<change-notes>Initial commit</change-notes>
|
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
<depends>com.intellij.modules.lang</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
<extensions defaultExtensionNs="com.intellij">
|
||||||
<!-- Add your extensions here -->
|
|
||||||
<moduleBuilder builderClass="org.jetbrains.tutorials.project.wizard.DemoModuleWizardStep"
|
<moduleBuilder builderClass="org.jetbrains.tutorials.project.wizard.DemoModuleWizardStep"
|
||||||
id="DEMO_STEP"
|
id="DEMO_STEP"
|
||||||
order="first"/>
|
order="first"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
<application-components>
|
|
||||||
<!-- Add your application components here -->
|
|
||||||
</application-components>
|
|
||||||
|
|
||||||
<project-components>
|
|
||||||
<!-- Add your project components here -->
|
|
||||||
</project-components>
|
|
||||||
|
|
||||||
<actions>
|
|
||||||
</actions>
|
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
@ -2,21 +2,10 @@
|
|||||||
<id>com.jetbrains.psidemo</id>
|
<id>com.jetbrains.psidemo</id>
|
||||||
<name>PSI demo</name>
|
<name>PSI demo</name>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<vendor email="support@yourcompany.com" url="http://www.yourcompany.com">YourCompany</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
||||||
<idea-version since-build="173.0"/>
|
<idea-version since-build="173.0"/>
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
|
|
||||||
on how to target different products -->
|
|
||||||
<!-- uncomment to enable plugin in all products
|
|
||||||
<depends>com.intellij.modules.lang</depends>
|
|
||||||
-->
|
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
|
||||||
<!-- Add your extensions here -->
|
|
||||||
</extensions>
|
|
||||||
|
|
||||||
<actions>
|
<actions>
|
||||||
<action class="com.intellij.tutorials.psi.PsiNavigationDemoAction" id="PsiNavigationDemo" text="PSI Navigation Demo...">
|
<action class="com.intellij.tutorials.psi.PsiNavigationDemoAction" id="PsiNavigationDemo" text="PSI Navigation Demo...">
|
||||||
<add-to-group group-id="ToolsMenu" anchor="last"/>
|
<add-to-group group-id="ToolsMenu" anchor="last"/>
|
||||||
|
@ -1,35 +1,16 @@
|
|||||||
<idea-plugin>
|
<idea-plugin>
|
||||||
<id>org.jetbrains.tutorials.actions.RegisterActions</id>
|
<id>org.jetbrains.tutorials.actions.RegisterActions</id>
|
||||||
<name>Sample plugin for working with IntelliJ Action System</name>
|
<name>Sample for working with IntelliJ Action System</name>
|
||||||
<version>1.1</version>
|
<version>1.1</version>
|
||||||
<vendor email="support@jetbrains.com" url="http://www.jetbrains.com">JetBrains</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<description>Illustration of the Action System</description>
|
<description>Illustration of the Action System with various registration variants</description>
|
||||||
|
|
||||||
<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>
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
<depends>com.intellij.modules.lang</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
|
|
||||||
on how to target different products -->
|
|
||||||
<!-- uncomment to enable plugin in all products
|
|
||||||
<depends>com.intellij.modules.lang</depends>
|
|
||||||
-->
|
|
||||||
|
|
||||||
<extensions defaultExtensionNs="com.intellij">
|
|
||||||
<!-- Add your extensions here -->
|
|
||||||
</extensions>
|
|
||||||
|
|
||||||
<application-components>
|
|
||||||
<!-- Add your application components here -->
|
|
||||||
</application-components>
|
|
||||||
|
|
||||||
<project-components>
|
|
||||||
<!-- Add your project components here -->
|
|
||||||
</project-components>
|
|
||||||
|
|
||||||
<actions>
|
<actions>
|
||||||
<!-- Add your actions here -->
|
<!-- Add your actions here -->
|
||||||
<!-- The <action> element defines an action to register.
|
<!-- The <action> element defines an action to register.
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
<idea-plugin url="www.jetbrains.com">
|
<idea-plugin>
|
||||||
<id>org.jetbrains.tutorials.run.configuration</id>
|
<id>org.jetbrains.tutorials.run.configuration</id>
|
||||||
<name>Run Configuration</name>
|
<name>Run Configuration Demo</name>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<vendor email="support@jetbrains.com" url="http://www.jetbrains.com">JetBrains</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<description>Illustration of working with run configurations</description>
|
<description>Illustration of working with run configurations</description>
|
||||||
|
|
||||||
<change-notes>Initial commit</change-notes>
|
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
<depends>com.intellij.modules.lang</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
|
|
||||||
@ -16,15 +13,4 @@
|
|||||||
<configurationType implementation="org.jetbrains.tutorials.run.configuration.DemoRunConfigurationType"/>
|
<configurationType implementation="org.jetbrains.tutorials.run.configuration.DemoRunConfigurationType"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
<application-components>
|
|
||||||
<!-- Add your application components here -->
|
|
||||||
</application-components>
|
|
||||||
|
|
||||||
<project-components>
|
|
||||||
<!-- Add your project components here -->
|
|
||||||
</project-components>
|
|
||||||
|
|
||||||
<actions>
|
|
||||||
</actions>
|
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
@ -1,33 +1,16 @@
|
|||||||
<idea-plugin>
|
<idea-plugin>
|
||||||
<id>org.jetbrains.plugins.sample.ToolWindow</id>
|
<id>org.jetbrains.plugins.sample.ToolWindow</id>
|
||||||
<name>Tool Window</name>
|
<name>Tool Window Demo</name>
|
||||||
<description>This sample plugin illustrates how to create your custom tool window.</description>
|
<description>This sample plugin illustrates how to create your custom tool window.</description>
|
||||||
<version>2.0</version>
|
<version>2.0</version>
|
||||||
<vendor email="support@yourcompany.com" url="http://www.yourcompany.com">YourCompany</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<change-notes><![CDATA[
|
|
||||||
Add change notes here.<br>
|
|
||||||
<em>most HTML tags may be used</em>
|
|
||||||
]]>
|
|
||||||
</change-notes>
|
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
|
||||||
<idea-version since-build="141.0"/>
|
<idea-version since-build="141.0"/>
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
|
|
||||||
on how to target different products -->
|
|
||||||
<!-- uncomment to enable plugin in all products
|
|
||||||
<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"
|
||||||
factoryClass="myToolWindow.MyToolWindowFactory"/>
|
factoryClass="myToolWindow.MyToolWindowFactory"/>
|
||||||
|
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
<actions>
|
|
||||||
<!-- Add your actions here -->
|
|
||||||
</actions>
|
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
@ -1,12 +1,10 @@
|
|||||||
<idea-plugin url="www.jetbrains.com">
|
<idea-plugin>
|
||||||
<id>org.jetbrains.plugins.sample.TreeStructure</id>
|
<id>org.jetbrains.plugins.sample.TreeStructure</id>
|
||||||
<name>Tree Structure Provider Demo</name>
|
<name>Tree Structure Provider Demo</name>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
<vendor email="support@jetbrains.com" url="http://www.jetbrains.com">JetBrains</vendor>
|
<vendor>JetBrains</vendor>
|
||||||
|
|
||||||
<description>Tree Structure Provider Demo</description>
|
<description>Tree Structure Provider Demo showing only plain text files</description>
|
||||||
|
|
||||||
<change-notes>Initial commit</change-notes>
|
|
||||||
|
|
||||||
<idea-version since-build="131"/>
|
<idea-version since-build="131"/>
|
||||||
<depends>com.intellij.modules.lang</depends>
|
<depends>com.intellij.modules.lang</depends>
|
||||||
@ -15,16 +13,4 @@
|
|||||||
<treeStructureProvider implementation="org.jetbrains.tutorials.tree.structure.TextOnlyTreeStructureProvider"/>
|
<treeStructureProvider implementation="org.jetbrains.tutorials.tree.structure.TextOnlyTreeStructureProvider"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|
||||||
<application-components>
|
|
||||||
<!-- Add your application components here -->
|
|
||||||
</application-components>
|
|
||||||
|
|
||||||
<project-components>
|
|
||||||
<!-- Add your project components here -->
|
|
||||||
</project-components>
|
|
||||||
|
|
||||||
<actions>
|
|
||||||
<!-- Add your actions here -->
|
|
||||||
</actions>
|
|
||||||
|
|
||||||
</idea-plugin>
|
</idea-plugin>
|
Loading…
x
Reference in New Issue
Block a user