avoid having two separate plugin.xml files for Python plugin in classpath when running idea from idea

This commit is contained in:
Dmitry Jemerov
2013-09-27 15:19:29 +02:00
parent d39610faa5
commit bd6cd15f2f
2 changed files with 17 additions and 0 deletions
@@ -0,0 +1,16 @@
<idea-plugin version="2" xmlns:xi="http://www.w3.org/2001/XInclude" url="http://confluence.jetbrains.com/display/PYH/">
<!-- Components and extensions declared in this file work ONLY in Python plugin, not in standalone PyCharm.
Anything related to Python/Java integration must go in this file. -->
<id>PythonCore</id>
<name>Python Community Edition</name>
<idea-version since-build="130.0" until-build="133.0"/>
<description>Smart editing for Python scripts</description>
<version>3.0</version>
<depends>com.intellij.modules.java</depends>
<vendor url="http://www.jetbrains.com/pycharm/" logo="/com/jetbrains/python/python.png">JetBrains, Keith Lea</vendor>
<xi:include href="/META-INF/python-core.xml" xpointer="xpointer(/idea-plugin/*)"/>
<xi:include href="/META-INF/python-plugin-core.xml" xpointer="xpointer(/idea-plugin/*)"/>
</idea-plugin>