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
This commit is contained in:
Alexander Zolotov
2019-01-18 15:50:02 +03:00
parent 8fee70ea26
commit aab264bb0b
24 changed files with 0 additions and 26 deletions

View File

@@ -1,7 +1,6 @@
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
<name>Python Terminal</name>
<id>org.jetbrains.plugins.python-terminal</id>
<version>VERSION</version>
<vendor>JetBrains</vendor>
<depends>com.intellij.modules.python</depends>