mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
42 lines
1.6 KiB
XML
42 lines
1.6 KiB
XML
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
|
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
|
|
|
|
<idea-plugin>
|
|
|
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
|
<id>org.intellij.sdk.toolWindow</id>
|
|
|
|
<!-- Text to display as name on Settings | Plugin page -->
|
|
<name>SDK: Tool Window Sample</name>
|
|
|
|
<!-- Indicate this plugin can be loaded in all IntelliJ Platform-based products. -->
|
|
<depends>com.intellij.modules.platform</depends>
|
|
|
|
<!-- Text to display as description on Settings | Plugin page -->
|
|
<description>
|
|
<![CDATA[
|
|
This sample plugin illustrates how to create your custom tool window.<br>
|
|
See the
|
|
<a href="https://plugins.jetbrains.com/docs/intellij/tool-windows.html">Tool Windows</a>
|
|
for more information.
|
|
]]>
|
|
</description>
|
|
<change-notes>
|
|
<![CDATA[
|
|
<ul>
|
|
<li><b>2.0.0</b> Convert to Gradle-based plugin.</li>
|
|
<li><b>1.0.0</b> Release 2018.3 and earlier.</li>
|
|
</ul>
|
|
]]>
|
|
</change-notes>
|
|
|
|
<!-- Text to display as company information on Settings | Plugin page -->
|
|
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<toolWindow id="Sample Calendar" secondary="true" icon="AllIcons.General.Modified" anchor="right"
|
|
factoryClass="org.intellij.sdk.toolWindow.MyToolWindowFactory"/>
|
|
</extensions>
|
|
|
|
</idea-plugin>
|