mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
1. Delete `intellij.python.community.impl.xml` (move content to `PythonCore` plugin). It is necessary to fix incorrect dependencies: `PythonCore`, `Pythonid` include the same module. 2. Fixed dependencies: if some plugin/module needs Python core functionality, then it should depend on `PythonCore`. Co-authored-by: Vladimir Koshelev <Vladimir.Koshelev@jetbrains.com> Merge-request: IJ-MR-136158 Merged-by: Egor Eliseev <Egor.Eliseev@jetbrains.com> GitOrigin-RevId: ce9ed4c17f601ee1ca2b6cf608f4e30fdac1d879
27 lines
1.4 KiB
XML
27 lines
1.4 KiB
XML
<idea-plugin package="com.intellij.python.community.plugin.impl">
|
|
<!--Plugin for other (not PyCharm) IDEs, including IU-->
|
|
<dependencies>
|
|
<!--Any IDE but NOT PyCharm-->
|
|
<plugin id="com.intellij.modules.python-in-non-pycharm-ide-capable"/>
|
|
</dependencies>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<applicationService serviceInterface="com.jetbrains.python.run.PyCommonOptionsFormFactory"
|
|
serviceImplementation="com.intellij.python.community.plugin.impl.run.PyPluginCommonOptionsFormFactory"/>
|
|
<applicationService serviceInterface="com.jetbrains.python.run.PyCommonFragmentsBuilder"
|
|
serviceImplementation="com.intellij.python.community.plugin.impl.run.PyPluginCommonFragmentsBuilder"/>
|
|
</extensions>
|
|
|
|
<actions resource-bundle="messages.PyBundle">
|
|
<action id="PyManagePackages" class="com.intellij.python.community.plugin.impl.packaging.PyManagePackagesAction">
|
|
<add-to-group group-id="ToolsMenu" anchor="last"/>
|
|
</action>
|
|
<action id="RunPythonToolwindowAction" class="com.intellij.python.community.plugin.impl.RunPythonToolwindowAction">
|
|
</action>
|
|
</actions>
|
|
|
|
<applicationListeners>
|
|
<listener class="com.intellij.python.community.plugin.impl.facet.PythonSdkTableListener" topic="com.intellij.openapi.projectRoots.ProjectJdkTable$Listener"/>
|
|
</applicationListeners>
|
|
|
|
</idea-plugin> |