Remove :idea prefix in IDE FIR modules which are going to stay in kotlin repo

This commit fixes not possibility to build project with `disableKotlinPluginModules`
flag on because Gradle tries to resolve `:idea` module which is disabled
This commit is contained in:
Nikita Bobko
2021-06-21 18:01:12 +02:00
committed by teamcityserver
parent 40872dd4ca
commit 938cd955e1
13 changed files with 36 additions and 30 deletions
@@ -16,8 +16,8 @@ dependencies {
testCompile(projectTests(":kotlinx-serialization-ide-plugin"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(projectTests(":compiler:tests-spec"))
testCompile(projectTests(":idea:idea-frontend-fir:idea-fir-low-level-api"))
testCompile(projectTests(":idea:idea-frontend-fir"))
testCompile(projectTests(":idea-frontend-fir:idea-fir-low-level-api"))
testCompile(projectTests(":idea-frontend-fir"))
testCompile(intellijCoreDep()) { includeJars("intellij-core", "guava", rootProject = rootProject) }
testApiJUnit5()
}