generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
39 lines (32 loc) · 1.52 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin>
<id>com.github.clemtar.oddevenbackgroundmethods</id>
<name>odd-even-background-methods</name>
<vendor>clemtar</vendor>
<!-- Indicate this plugin can be loaded in all IntelliJ Platform-based products. -->
<depends>com.intellij.modules.platform</depends>
<depends optional="true" config-file="php-annotator.xml">com.jetbrains.php</depends>
<!-- Text to display as description on Preferences/Settings | Plugin page -->
<description>
<![CDATA[
Adds a <i>Greeting</i> menu group anchored last in the <b>Main Menu</b>
]]>
</description>
<change-notes>
<![CDATA[
<ul>
<li><b>2.0.0</b> Converted to Gradle project.</li>
<li><b>1.0</b> Release 2019.1 and earlier.</li>
</ul>
]]>
</change-notes>
<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<vendor url="https://www.coservit.fr">Coucou de Servicenav</vendor>
<extensions defaultExtensionNs="com.intellij">
<colorAndFontPanelFactory
implementation="com.github.clemtar.oddevenbackgroundmethods.settings.BackgroundMethodsPageFactory"/>
</extensions>
<applicationListeners>
<listener class="com.github.clemtar.oddevenbackgroundmethods.listeners.BackgroundMethodsSchemeListener" topic="com.intellij.openapi.editor.colors.EditorColorsListener"/>
</applicationListeners>
</idea-plugin>