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) · 924 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.yoan-myparcel.zplintellijplugin</id>
<name>zpl-intellij-plugin</name>
<vendor>yoan-myparcel</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.yoan-myparcel.zplintellijplugin.services.MyApplicationService"/>
<projectService serviceImplementation="com.github.yoan-myparcel.zplintellijplugin.services.MyProjectService"/>
</extensions>
<projectListeners>
<listener class="com.github.yoan-myparcel.zplintellijplugin.listeners.MyProjectManagerListener"
topic="com.intellij.openapi.project.ProjectManagerListener"/>
</projectListeners>
</idea-plugin>