mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<idea-plugin>
|
|
<id>com.intellij.demo.framework</id>
|
|
<name>Framework example</name>
|
|
<version>1.0</version>
|
|
<vendor email="support@yourcompany.com" url="http://www.yourcompany.com">YourCompany</vendor>
|
|
|
|
<description>Framework support tutorial</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"/>
|
|
|
|
<!-- 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">
|
|
<framework.type implementation="com.intellij.tutorials.framework.DemoFramework"/>
|
|
</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> |