2020-07-02 06:41:26 +00:00
|
|
|
<idea-plugin>
|
2020-03-18 08:59:00 +00:00
|
|
|
<id>org.jetbrains.plugins.template</id>
|
|
|
|
<name>Template</name>
|
|
|
|
<vendor>JetBrains</vendor>
|
|
|
|
|
|
|
|
<!-- Product and plugin compatibility requirements -->
|
2020-06-17 10:06:43 +00:00
|
|
|
<!-- https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html -->
|
|
|
|
<depends>com.intellij.modules.platform</depends>
|
2020-03-18 08:59:00 +00:00
|
|
|
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
2020-04-21 17:49:38 +00:00
|
|
|
<applicationService serviceImplementation="org.jetbrains.plugins.template.services.MyApplicationService"/>
|
|
|
|
<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>
|
2020-04-21 17:49:38 +00:00
|
|
|
<listener class="org.jetbrains.plugins.template.listeners.MyProjectManagerListener"
|
|
|
|
topic="com.intellij.openapi.project.ProjectManagerListener"/>
|
2020-09-25 18:50:42 +00:00
|
|
|
</applicationListeners>
|
2020-03-18 08:59:00 +00:00
|
|
|
</idea-plugin>
|