mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2026-09-23 12:31:24 +00:00
20 lines
1.1 KiB
XML
20 lines
1.1 KiB
XML
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
|
|
<idea-plugin>
|
|
<id>org.jetbrains.plugins.template</id>
|
|
<name>IntelliJ Platform Plugin Template</name>
|
|
<vendor>JetBrains</vendor>
|
|
<description><![CDATA[
|
|
<p><b>IntelliJ Platform Plugin Template</b> is a repository that provides a pure template to make it easier to create a new plugin project.</p>
|
|
<p>The main goal of this template is to speed up the setup phase of plugin development for both new and experienced developers by preconfiguring the project scaffold and CI, linking to the proper documentation pages, and keeping everything organized.</p>
|
|
]]></description>
|
|
|
|
<depends>com.intellij.modules.platform</depends>
|
|
|
|
<resource-bundle>messages.MyBundle</resource-bundle>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<toolWindow factoryClass="org.jetbrains.plugins.template.toolWindow.MyToolWindowFactory" id="MyToolWindow"/>
|
|
<postStartupActivity implementation="org.jetbrains.plugins.template.startup.MyProjectActivity" />
|
|
</extensions>
|
|
</idea-plugin>
|