generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
18 lines (15 loc) · 863 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin>
<id>com.github.jokerrou.ugreennastemplate</id>
<name>ugreennas-template</name>
<vendor>jokerrou</vendor>
<depends>com.intellij.modules.platform</depends>
<extensions defaultExtensionNs="com.intellij">
<applicationService serviceImplementation="com.github.jokerrou.ugreennastemplate.services.MyApplicationService"/>
<projectService serviceImplementation="com.github.jokerrou.ugreennastemplate.services.MyProjectService"/>
</extensions>
<applicationListeners>
<listener class="com.github.jokerrou.ugreennastemplate.listeners.MyProjectManagerListener"
topic="com.intellij.openapi.project.ProjectManagerListener"/>
</applicationListeners>
</idea-plugin>