Files
Nikolay Chashnikov c3d006d45e [plugin model] use 'internal' visibility for content modules which are used from modules of other plugins (IJPL-207059)
These modules and their classes don't have external usages, so they shouldn't be made 'public' at least for now. The 'namespace' is also set to 'jetbrains' for plugins which contain such modules or modules which use them to allow 'internal' visibility to work.

GitOrigin-RevId: 198007e49320075dc27faadde6963e98332296a4
2025-10-08 18:39:06 +00:00

21 lines
929 B
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"/>
<plugin id="intellij.pycharm.community.customization.shared"/>
</dependencies>
<xi:include href="/META-INF/tips-pycharm-community.xml"/>
<content namespace="jetbrains">
<module name="intellij.pycharm.community.ide.impl.promotion"/> <!-- mostly promo of Pro -->
</content>
</idea-plugin>