ML in SE: Add required runtime dependencies in community (IDEA-364695)

52c10b4d has removed those dependencies from the plugin's iml,
as otherwise they cause circular dependencies in bazel.

However, removing them means that required dependencies
do not get loaded, and that results in broken
ML in Search Everywhere plugin on local, non-dev builds.

To add those dependencies back, we are going to use
the intellij.idea.community.main.iml

Previous commit for the same issue only fixed ultimate.

GitOrigin-RevId: 1ef3931edc82b779cbe864e97677206bb995e6b8
This commit is contained in:
Adam Malek
2024-12-13 15:49:12 +01:00
committed by intellij-monorepo-bot
parent 6abab21597
commit 0e2a5864fa

View File

@@ -228,5 +228,10 @@
<orderEntry type="module" module-name="intellij.jvm.analysis.impl" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.java.byteCodeViewer" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.vcs.github.json" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.searchEverywhereMl.ranking.core" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.searchEverywhereMl.ranking.java" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.searchEverywhereMl.ranking.vcs" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.searchEverywhereMl.ranking.yaml" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.searchEverywhereMl.typos" scope="RUNTIME" />
</component>
</module>