2021-08-31 19:18:48 +00:00
|
|
|
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
|
2020-07-02 06:41:26 +00:00
|
|
|
<idea-plugin>
|
2020-03-18 08:59:00 +00:00
|
|
|
<id>org.jetbrains.plugins.template</id>
|
2022-09-19 11:43:13 +00:00
|
|
|
<name>IntelliJ Platform Plugin Template</name>
|
2020-03-18 08:59:00 +00:00
|
|
|
<vendor>JetBrains</vendor>
|
|
|
|
|
2020-06-17 10:06:43 +00:00
|
|
|
<depends>com.intellij.modules.platform</depends>
|
2020-03-18 08:59:00 +00:00
|
|
|
|
2023-02-08 16:32:16 +00:00
|
|
|
<resource-bundle>messages.MyBundle</resource-bundle>
|
|
|
|
|
2020-03-18 08:59:00 +00:00
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
2020-04-21 17:49:38 +00:00
|
|
|
<projectService serviceImplementation="org.jetbrains.plugins.template.services.MyProjectService"/>
|
2020-03-18 08:59:00 +00:00
|
|
|
</extensions>
|
2020-04-21 17:49:38 +00:00
|
|
|
|
2020-09-25 18:50:42 +00:00
|
|
|
<applicationListeners>
|
2023-03-02 15:31:41 +00:00
|
|
|
<listener class="org.jetbrains.plugins.template.listeners.MyFrameStateListener"
|
|
|
|
topic="com.intellij.ide.FrameStateListener"/>
|
2020-09-25 18:50:42 +00:00
|
|
|
</applicationListeners>
|
2020-03-18 08:59:00 +00:00
|
|
|
</idea-plugin>
|