theme_basics/resources/META-INF/plugin.xml (23 lines of code) (raw):

<!-- 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="221"/> <!-- 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>