mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
18 lines
541 B
XML
18 lines
541 B
XML
<idea-plugin>
|
|
<id>com.intellij.demo.framework</id>
|
|
<name>Framework example</name>
|
|
<version>1.0</version>
|
|
<vendor>JetBrains</vendor>
|
|
|
|
<description>Demonstrates basic Framework support with custom Configurable</description>
|
|
|
|
<idea-version since-build="131"/>
|
|
|
|
<!-- Product and plugin compatibility requirements -->
|
|
<depends>com.intellij.modules.java</depends>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<framework.type implementation="com.intellij.tutorials.framework.DemoFramework"/>
|
|
</extensions>
|
|
|
|
</idea-plugin> |