forked from JetBrains/intellij-sdk-code-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
41 lines (31 loc) · 1.41 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
40
41
<!-- Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin>
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.themeBasics</id>
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Theme Basics</name>
<!-- The version of this plugin -->
<version>0.1</version>
<!-- Compatible with the following versions of IntelliJ Platform: version 2022.1 and newer. -->
<idea-version since-build="2022.1"/>
<!-- Indicate this plugin can be loaded in all IntelliJ Platform-based products. -->
<depends>com.intellij.modules.platform</depends>
<description>
<![CDATA[
IntelliJ Platform SDK code sample to illustrate creating <em>themes</em>.
]]>
</description>
<change-notes>
<![CDATA[
<ul>
<li><b>0.1</b> Initial release. Basic theme functionality.</li>
</ul>
]]>
</change-notes>
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
<extensions defaultExtensionNs="com.intellij">
<themeProvider id="eb9b7461-397b-4b98-a422-224fc0a74564" path="/theme_basics.theme.json"/>
</extensions>
</idea-plugin>