[Markdown][RDCT-220] Move optional module dependencies to the plugin module

GitOrigin-RevId: 75b310cc888bbce205e61416d4b4fb07c0785e33
This commit is contained in:
Ivan Posti
2023-10-30 20:13:41 +01:00
committed by intellij-monorepo-bot
parent 2caa5c0e87
commit ae9fb08491
5 changed files with 19 additions and 8 deletions

1
.idea/modules.xml generated
View File

@@ -810,6 +810,7 @@
<module fileurl="file://$PROJECT_DIR$/plugins/markdown/frontmatter/yaml/intellij.markdown.frontmatter.yaml.iml" filepath="$PROJECT_DIR$/plugins/markdown/frontmatter/yaml/intellij.markdown.frontmatter.yaml.iml" />
<module fileurl="file://$PROJECT_DIR$/plugins/markdown/images/intellij.markdown.images.iml" filepath="$PROJECT_DIR$/plugins/markdown/images/intellij.markdown.images.iml" />
<module fileurl="file://$PROJECT_DIR$/plugins/markdown/model/intellij.markdown.model.iml" filepath="$PROJECT_DIR$/plugins/markdown/model/intellij.markdown.model.iml" />
<module fileurl="file://$PROJECT_DIR$/plugins/markdown/plugin/intellij.markdown.plugin.iml" filepath="$PROJECT_DIR$/plugins/markdown/plugin/intellij.markdown.plugin.iml" />
<module fileurl="file://$PROJECT_DIR$/plugins/markdown/spellchecker/intellij.markdown.spellchecker.iml" filepath="$PROJECT_DIR$/plugins/markdown/spellchecker/intellij.markdown.spellchecker.iml" />
<module fileurl="file://$PROJECT_DIR$/plugins/markdown/test/intellij.markdown.tests.iml" filepath="$PROJECT_DIR$/plugins/markdown/test/intellij.markdown.tests.iml" />
<module fileurl="file://$PROJECT_DIR$/plugins/markdown/xml/intellij.markdown.xml.iml" filepath="$PROJECT_DIR$/plugins/markdown/xml/intellij.markdown.xml.iml" />

View File

@@ -140,6 +140,7 @@
<orderEntry type="module" module-name="intellij.terminal.sh" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.gradle.java.maven" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.markdown" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.markdown.plugin" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.textmate" scope="TEST" />
<orderEntry type="module" module-name="intellij.webp" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.space.java.jps" scope="TEST" />

View File

@@ -8,13 +8,5 @@
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="intellij.markdown.core" exported="" />
<orderEntry type="module" module-name="intellij.markdown.fenceInjection" />
<orderEntry type="module" module-name="intellij.markdown.frontmatter" />
<orderEntry type="module" module-name="intellij.markdown.frontmatter.toml" />
<orderEntry type="module" module-name="intellij.markdown.frontmatter.yaml" />
<orderEntry type="module" module-name="intellij.markdown.images" />
<orderEntry type="module" module-name="intellij.markdown.model" />
<orderEntry type="module" module-name="intellij.markdown.spellchecker" />
<orderEntry type="module" module-name="intellij.markdown.xml" />
</component>
</module>

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="intellij.markdown.fenceInjection" />
<orderEntry type="module" module-name="intellij.markdown.frontmatter" />
<orderEntry type="module" module-name="intellij.markdown.frontmatter.toml" />
<orderEntry type="module" module-name="intellij.markdown.frontmatter.yaml" />
<orderEntry type="module" module-name="intellij.markdown.images" />
<orderEntry type="module" module-name="intellij.markdown.model" />
<orderEntry type="module" module-name="intellij.markdown.spellchecker" />
<orderEntry type="module" module-name="intellij.markdown.xml" />
</component>
</module>

View File

@@ -22,6 +22,7 @@
<orderEntry type="module" module-name="intellij.settingsRepository" />
<orderEntry type="module" module-name="intellij.properties" />
<orderEntry type="module" module-name="intellij.markdown" />
<orderEntry type="module" module-name="intellij.markdown.plugin" />
<orderEntry type="module" module-name="intellij.configurationScript" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.completionMlRanking" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.statsCollector" scope="RUNTIME" />