Files
JetBrains_intellij-platform…/src/main/resources/META-INF/plugin.xml

20 lines
1.1 KiB
XML
Raw Normal View History

2021-08-31 21:18:48 +02:00
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin>
2020-03-18 09:59:00 +01:00
<id>org.jetbrains.plugins.template</id>
<name>IntelliJ Platform Plugin Template</name>
2020-03-18 09:59:00 +01:00
<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>
2020-03-18 09:59:00 +01:00
<depends>com.intellij.modules.platform</depends>
2020-03-18 09:59:00 +01:00
<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>
2020-03-18 09:59:00 +01:00
</idea-plugin>