[java] IDEA-385743 Add backend dependencies to intellij.java.i18n

GitOrigin-RevId: 82f3f8b32d974f5c7333d8fbf1af9d8c37f25687
This commit is contained in:
Mikhail Pyltsin
2026-02-10 11:51:18 +01:00
committed by intellij-monorepo-bot
parent 0db273788b
commit 85fc16cb1e
3 changed files with 21 additions and 4 deletions

View File

@@ -40,6 +40,7 @@ jvm_library(
"//java/jsp-openapi:jsp",
"//plugins/properties/properties-psi-api:psi",
"//plugins/properties/properties-psi-impl:backend-psi",
"//java/java-backend:backend",
"//jvm/jvm-analysis-api:analysis",
"//libraries/stream",
"//platform/core-ui",
@@ -52,7 +53,8 @@ jvm_library(
exports = [
"//plugins/properties:properties-backend",
"//java/java-impl:impl",
]
],
runtime_deps = ["//platform/backend"]
)
jvm_library(
@@ -98,6 +100,7 @@ jvm_library(
"//java/testFramework",
"//plugins/properties/properties-psi-api:psi",
"//plugins/properties/properties-psi-impl:backend-psi",
"//java/java-backend:backend",
"//jvm/jvm-analysis-api:analysis",
"//libraries/stream",
"//platform/core-ui",

View File

@@ -42,6 +42,7 @@
<orderEntry type="module" module-name="intellij.java.testFramework" scope="TEST" />
<orderEntry type="module" module-name="intellij.properties.psi" />
<orderEntry type="module" module-name="intellij.properties.backend.psi" />
<orderEntry type="module" module-name="intellij.java.backend" />
<orderEntry type="module" module-name="intellij.jvm.analysis" />
<orderEntry type="module" module-name="intellij.libraries.stream" />
<orderEntry type="module" module-name="intellij.platform.core.ui" />
@@ -51,5 +52,6 @@
<orderEntry type="module" module-name="intellij.platform.util.jdom" />
<orderEntry type="module" module-name="intellij.xml.psi" />
<orderEntry type="module" module-name="intellij.tools.ide.metrics.benchmark" scope="TEST" />
<orderEntry type="module" module-name="intellij.platform.backend" scope="RUNTIME" />
</component>
</module>

View File

@@ -4,9 +4,21 @@
<category>JVM Tools</category>
<vendor>JetBrains</vendor>
<depends>com.intellij.properties</depends>
<depends>com.intellij.java</depends>
<depends>com.intellij.modules.platform</depends>
<dependencies>
<module name="intellij.java.indexing"/>
<module name="intellij.java"/>
<module name="intellij.properties.backend"/>
<module name="intellij.java.impl"/>
<module name="intellij.jsp"/>
<module name="intellij.properties.psi"/>
<module name="intellij.properties.backend.psi"/>
<module name="intellij.jvm.analysis"/>
<module name="intellij.java.impl.refactorings"/>
<!-- region Generated dependencies - run `Generate Product Layouts` to regenerate -->
<module name="intellij.java.backend"/>
<module name="intellij.platform.backend"/>
<!-- endregion -->
</dependencies>
<description>
Provides code inspections and corresponding quick fixes for internationalization in Java source code.