Files
kotlin/jps-plugin/bare-plugin/src/META-INF/plugin.xml
2015-02-19 15:35:46 +03:00

23 lines
1007 B
XML

<idea-plugin version="2" url="http://kotlinlang.org">
<id>org.jetbrains.kotlin.bare</id>
<name>Kotlin Bare Compiler for IntelliJ IDEA</name>
<description><![CDATA[
This plugin is intended for IntelliJ IDEA developers only. It should be installed along with main Kotlin plugin.
When main Kotlin plugin is disabled due to incompatibility with bleeding edge IntelliJ IDEA,
this plugin will still compile Kotlin sources.
<br />
This plugin is only capable of compiling Kotlin code. All highlighting, inspections, refactorings are disabled.]]>
</description>
<version>@snapshot@</version>
<vendor url="http://www.jetbrains.com">JetBrains s.r.o.</vendor>
<idea-version since-build="138.977" until-build="999.9999"/>
<application-components>
<component>
<implementation-class>org.jetbrains.kotlin.idea.bare.BareJpsPluginRegistrar</implementation-class>
</component>
</application-components>
</idea-plugin>