-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
18 lines (14 loc) · 781 Bytes
/
Copy pathplugin.xml
File metadata and controls
18 lines (14 loc) · 781 Bytes
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.ossworker.devplugin</id>
<name>dev-plugin</name>
<vendor>ossworker</vendor>
<depends>com.intellij.modules.platform</depends>
<resource-bundle>messages.MyBundle</resource-bundle>
<extensions defaultExtensionNs="com.intellij">
<toolWindow factoryClass="com.github.ossworker.devplugin.toolWindow.MyToolWindowFactory" id="MyToolWindow"/>
</extensions>
<applicationListeners>
<listener class="com.github.ossworker.devplugin.listeners.MyApplicationActivationListener" topic="com.intellij.openapi.application.ApplicationActivationListener"/>
</applicationListeners>
</idea-plugin>