mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 04:09:09 +07:00
`PyJavaImportResolver` is a v1 module which is included only if `com.intellij.modules.idea`. The comment says: > Java-specific dependencies are actually IntelliJ IDEA specific dependencies But this is *NOT* true. `JavaPsiFacade` is only guaranteed to be available if `com.intellij.java` module is set. Hence, we change dependency GitOrigin-RevId: 7c39e37f3a023e747e40cffabff848138e7b9394
44 lines
2.2 KiB
XML
44 lines
2.2 KiB
XML
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude" url="https://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>
|
|
|
|
<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>
|
|
|
|
<depends>com.intellij.modules.python-core-capable</depends>
|
|
|
|
<xi:include href="/META-INF/python-core-common.xml" xpointer="xpointer(/idea-plugin/*)"/>
|
|
|
|
<depends optional="true" config-file="python-community-plugin-java.xml">com.intellij.java</depends>
|
|
<depends optional="true" config-file="python-community-plugin-minor.xml">com.intellij.modules.clion</depends>
|
|
<depends optional="true" config-file="python-plugin-rider.xml">com.intellij.modules.rider</depends>
|
|
<depends optional="true" config-file="python-plugin-datagrip.xml">com.intellij.modules.datagrip</depends>
|
|
<depends optional="true" config-file="python-plugin-goland.xml">com.intellij.modules.go</depends>
|
|
<depends optional="true" config-file="python-plugin-rustrover.xml">com.intellij.modules.rustrover</depends>
|
|
<content>
|
|
<module name="intellij.python.terminal"/>
|
|
<module name="intellij.python.featuresTrainer"/>
|
|
<module name="intellij.python.markdown"/>
|
|
<module name="intellij.python.grazie"/>
|
|
<module name="intellij.python.langInjection"/>
|
|
<module name="intellij.python.copyright"/>
|
|
<module name="intellij.python.reStructuredText"/>
|
|
</content>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<applicationService serviceInterface="com.jetbrains.python.console.PythonConsoleRunnerFactory"
|
|
serviceImplementation="com.jetbrains.python.console.PydevConsoleRunnerFactory" />
|
|
</extensions>
|
|
</idea-plugin>
|