mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
30 lines
997 B
XML
30 lines
997 B
XML
<idea-plugin url="www.jetbrains.com">
|
|
<id>org.jetbrains.plugins.sample.ProjectViewPane</id>
|
|
<name>Project View Pane Demo</name>
|
|
<version>1.0</version>
|
|
<vendor email="support@jetbrains.com" url="http://www.jetbrains.com">JetBrains</vendor>
|
|
|
|
<description>Project View Pane Demo</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"/>
|
|
<depends>com.intellij.modules.lang</depends>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<projectViewPane implementation="org.jetbrains.tutorials.view.pane.ImagesProjectViewPane"/>
|
|
</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> |