Files
openide/python/ide/resources/META-INF/plugin.xml
Ilya.Kazakevich 636c384c85 PyCharm: Get rid of includes in v2 plugins: they do not play well with v2.
Autolayout doesn't obey includes. With plain copy/paste (which is a recommended approach for now) we do not have to list all modules manually in `pluginLayout`.

It is taken from `content`.

We also refactor out PyCharm training, as it depends on plugin that may not exist

GitOrigin-RevId: c225b3565a4b3ea1121a7cdf0b072a63b9448ca4
2024-04-16 04:23:07 +00:00

23 lines
1.1 KiB
XML

<!-- Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude" package="com.intellij.pycharm.community.customization.plugin" implementation-detail="true">
<name>PyCharm Community Customization</name>
<id>com.jetbrains.pycharm.community.customization</id>
<vendor>JetBrains</vendor>
<resource-bundle>messages.ActionsBundle</resource-bundle>
<dependencies>
<plugin id="com.intellij.modules.pycharm.community"/>
<plugin id="com.intellij.modules.python"/>
</dependencies>
<xi:include href="/META-INF/tips-pycharm-community.xml"/>
<content>
<module name="intellij.pycharm.community.ide.impl"/>
<module name="intellij.pycharm.community.ide.implTraining"/>
<module name="intellij.jupyter.core"/> <!-- Lang for notebooks preview -->
<module name="intellij.jupyter.viewOnly"/> <!-- notebooks preview itself-->
<module name="intellij.pycharm.community.ide.impl.promotion"/> <!-- mostly promo of Pro -->
</content>
</idea-plugin>