generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
19 lines (16 loc) · 937 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<idea-plugin>
<id>com.github.jbruell.intellijhoriizonprofiles</id>
<name>intellij-horiizon-profiles</name>
<vendor>jbruell</vendor>
<!-- Product and plugin compatibility requirements -->
<!-- https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html -->
<depends>com.intellij.modules.platform</depends>
<extensions defaultExtensionNs="com.intellij">
<applicationService serviceImplementation="com.github.jbruell.intellijhoriizonprofiles.services.MyApplicationService"/>
<projectService serviceImplementation="com.github.jbruell.intellijhoriizonprofiles.services.MyProjectService"/>
</extensions>
<applicationListeners>
<listener class="com.github.jbruell.intellijhoriizonprofiles.listeners.MyProjectManagerListener"
topic="com.intellij.openapi.project.ProjectManagerListener"/>
</applicationListeners>
</idea-plugin>