Refactoring: Split compilerModulesForJps into "embedded" and "maven"

This small refactoring is needed for the next commit.

This commit doesn't change any semantic.
This commit is contained in:
Nikita Bobko
2022-05-27 07:48:44 +02:00
parent 3569cdda38
commit 540164a691
4 changed files with 26 additions and 13 deletions
+5 -1
View File
@@ -18,7 +18,11 @@ dependencies {
compileOnly(project(":jps:jps-platform-api-signatures"))
testImplementation(projectTests(":generators:test-generator"))
rootProject.extra["compilerModulesForJps"]
rootProject.extra["kotlinJpsPluginEmbeddedDependencies"]
.let { it as List<String> }
.forEach { implementation(project(it)) }
rootProject.extra["kotlinJpsPluginMavenDependencies"]
.let { it as List<String> }
.forEach { implementation(project(it)) }