mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-13 15:52:01 +07:00
(cherry picked from commit 675a1b5828c4b2570c386b469a440d5512713d02)
(cherry picked from commit a114659a11)
47 lines
2.1 KiB
XML
47 lines
2.1 KiB
XML
<!--
|
|
Modified by Dmitrij Pochepko at 2025 as part of the OpenIDE project (https://openide.ru).
|
|
Any modifications are available on the same license terms as the original source code.
|
|
-->
|
|
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
<xi:include href="/META-INF/JavaIdePlugin.xml"/>
|
|
<xi:include href="/ideTipsAndTricks.xml"/>
|
|
|
|
<module value="com.intellij.modules.idea"/>
|
|
<module value="com.intellij.modules.idea.community"/>
|
|
<module value="com.intellij.modules.java-capable"/>
|
|
<module value="com.intellij.modules.python-core-capable"/> <!-- Python plugin can be installed -->
|
|
<module value="com.intellij.modules.python-in-non-pycharm-ide-capable"/> <!-- Enable Non-Pycharm-IDE support in the Python plugin -->
|
|
<module value="com.intellij.platform.ide.provisioner"/>
|
|
|
|
<content>
|
|
<module name="intellij.debugger.streams.core"/>
|
|
<module name="intellij.platform.coverage"/>
|
|
<module name="intellij.platform.coverage.agent"/>
|
|
<module name="intellij.xml.xmlbeans"/>
|
|
<module name="intellij.platform.ide.newUiOnboarding"/>
|
|
<module name="intellij.platform.ide.newUsersOnboarding"/>
|
|
<module name="intellij.ide.startup.importSettings"/>
|
|
<module name="intellij.platform.customization.min"/>
|
|
<module name="intellij.idea.customization.base"/>
|
|
<module name="intellij.idea.customization.backend"/>
|
|
<module name="intellij.platform.tips"/>
|
|
<module name="intellij.rd.ide.model.generated"/>
|
|
<module name="intellij.rd.platform"/>
|
|
<module name="intellij.rd.ui"/>
|
|
</content>
|
|
|
|
<xi:include href="/META-INF/common-ide-modules.xml"/>
|
|
|
|
<!--suppress XmlPathReference -->
|
|
<xi:include href="/META-INF/community-extensions.xml">
|
|
<xi:fallback/>
|
|
</xi:include>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<!--suppress PluginXmlRegistrationCheck -->
|
|
<applicationService serviceInterface="com.intellij.openapi.updateSettings.UpdateStrategyCustomization"
|
|
serviceImplementation="com.intellij.openapi.updateSettings.base.ShowWhatIsNewPageAfterUpdateCustomization"
|
|
overrides="true"/>
|
|
</extensions>
|
|
</idea-plugin>
|