mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-27 17:01:31 +07:00
`dependencies` tag join is not supported, hence `plugin.xml` must declare all its dependencies in one file GitOrigin-RevId: c1347feb7f995b211522c3f1408f9f576215f784
38 lines
1.6 KiB
XML
38 lines
1.6 KiB
XML
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude" url="https://confluence.jetbrains.com/display/PYH/"
|
|
package="PythonCore">
|
|
<!--Python community support for Pycharm, DS and IC. Package is fake, plugin doesn't contain any classes directly-->
|
|
|
|
|
|
<id>PythonCore</id>
|
|
<name>Python Community Edition</name>
|
|
|
|
<description><![CDATA[
|
|
The Python plug-in provides smart editing for Python scripts. The feature set of the plugin
|
|
corresponds to PyCharm IDE Community Edition.
|
|
<br>
|
|
<a href="https://blog.jetbrains.com/pycharm">PyCharm blog</a><br>
|
|
<a href="https://forum.jetbrains.com/forum/PyCharm">Discussion forum</a><br>
|
|
<a href="https://youtrack.jetbrains.com/issues/PY">Issue tracker</a><br>
|
|
]]></description>
|
|
|
|
<vendor url="https://www.jetbrains.com/pycharm/">JetBrains</vendor>
|
|
|
|
<dependencies>
|
|
<plugin id="com.intellij.modules.python-core-capable"/>
|
|
<plugin id="org.toml.lang"/><!-- intellij.python.community.imp doesn't work without it -->
|
|
</dependencies>
|
|
|
|
<!-- Declare that we support python -->
|
|
<module value="com.intellij.modules.python"/>
|
|
|
|
<!-- Python bundled modules for content -->
|
|
<xi:include href="/META-INF/python-v2-core-plugin-content-include.xml" xpointer="xpointer(/idea-plugin/*)"/>
|
|
<content>
|
|
<!--Mini-IDes support community python only-->
|
|
<module name="intellij.python.community.plugin.minor"/> <!-- Python for Mini-IDEs-->
|
|
<module name="intellij.python.community.plugin.minor.rider"/> <!-- Python special support for Rider -->
|
|
<module name="intellij.python.community.impl.community_only"/> <!-- Community-specific code-->
|
|
</content>
|
|
|
|
</idea-plugin>
|