mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 06:11:42 +07:00
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
28 lines
986 B
XML
28 lines
986 B
XML
<idea-plugin allow-bundled-update="true" package="com.intellij.ide.customization.java">
|
|
<id>com.intellij.java.ide</id>
|
|
<name>Java IDE Customization</name>
|
|
<vendor>JetBrains</vendor>
|
|
<category>IDE Settings</category>
|
|
<description>
|
|
Provides customization for IDEs which main language is Java (e.g., IntelliJ IDEA).
|
|
</description>
|
|
|
|
<incompatible-with>com.intellij.modules.appcode.ide</incompatible-with>
|
|
|
|
<dependencies>
|
|
<plugin id="com.intellij.java"/>
|
|
</dependencies>
|
|
|
|
<content namespace="jetbrains">
|
|
<module name="intellij.java.ide.customization/training"/>
|
|
</content>
|
|
|
|
<resource-bundle>messages.ActionsBundle</resource-bundle>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<applicationService serviceInterface="com.intellij.lang.IdeLanguageCustomization"
|
|
serviceImplementation="com.intellij.ide.customization.java.JavaIdeLanguageCustomization"
|
|
overrides="true"/>
|
|
</extensions>
|
|
</idea-plugin>
|