mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<!-- Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
|
|
|
<idea-plugin>
|
|
|
|
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
|
|
<id>org.intellij.sdk.runConfiguration</id>
|
|
|
|
<!-- Text to display as name on Preferences/Settings | Plugin page -->
|
|
<name>SDK: Run Configuration Demo</name>
|
|
|
|
<!-- Product and plugin compatibility requirements -->
|
|
<depends>com.intellij.modules.platform</depends>
|
|
|
|
<!-- Text to display as description on Preferences/Settings | Plugin page -->
|
|
<description>
|
|
<![CDATA[
|
|
Illustration of working with run configurations
|
|
<br>
|
|
See the
|
|
<a href="https://plugins.jetbrains.com/docs/intellij/run-configurations.html">Run Configurations</a>
|
|
for more information.
|
|
]]>
|
|
</description>
|
|
<change-notes>
|
|
<![CDATA[
|
|
<ul>
|
|
<li><b>2.0.0</b> Convert to Gradle-based plugin.</li>
|
|
<li><b>1.0.0</b> Release 2018.3 and earlier.</li>
|
|
</ul>
|
|
]]>
|
|
</change-notes>
|
|
|
|
<!-- Text to display as company information on Preferences/Settings | Plugin page -->
|
|
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<configurationType implementation="org.jetbrains.sdk.runConfiguration.DemoRunConfigurationType"/>
|
|
</extensions>
|
|
|
|
</idea-plugin>
|