Files
openide/python/IntelliLang-python/resources/META-INF/plugin.xml
T
Alexander Zolotov aab264bb0b Delete version tags from plugin.xml files
They don't make any sense since
- they are not required for bundled plugins (com.intellij.ide.plugins.IdeaPluginDescriptorImpl#myVersion will be filled with IDE version)
- they will be overwritten during the build for pluginsToPublish (org.jetbrains.intellij.build.impl.DistributionJARsBuilder#setPluginVersionAndSince)

Still they may affect plugins loading mechanism, e.g. see https://youtrack.jetbrains.com/issue/GO-6741 or https://youtrack.jetbrains.com/issue/IDEA-188964
2019-01-18 15:59:46 +03:00

13 lines
454 B
XML

<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
<name>Python IntelliLang</name>
<id>org.jetbrains.plugins.python-intelliLang</id>
<description>This plugin enables language injections</description>
<vendor>JetBrains</vendor>
<depends>com.intellij.modules.python</depends>
<depends>org.intellij.intelliLang</depends>
<xi:include href="/META-INF/intellilang-python-support.xml" xpointer="xpointer(/idea-plugin/*)"/>
</idea-plugin>