mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<idea-plugin version="2">
|
|
<id>com.intellij.tutorials.facet</id>
|
|
<name>Facet Demo</name>
|
|
<version>1.0</version>
|
|
<vendor email="support@jrtbrains.com" url="http://www.yourcompany.com">JetBrains</vendor>
|
|
|
|
<description>Basic example of working with facets</description>
|
|
|
|
<change-notes>Initial commit</change-notes>
|
|
|
|
<!-- please see https://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
|
|
<idea-version since-build="131"/>
|
|
|
|
<!-- please see https://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
|
|
on how to target different products -->
|
|
<!-- uncomment to enable plugin in all products
|
|
<depends>com.intellij.modules.lang</depends>
|
|
-->
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<facetType implementation="com.intellij.tutorials.facet.DemoFacetType"/>
|
|
</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> |