Attach JPS plugin modules to the project model

This commit is contained in:
Nikita Bobko
2021-12-22 16:12:28 +01:00
parent 208e271b4e
commit 047272e56f
5 changed files with 7 additions and 7 deletions
@@ -1,3 +1,3 @@
idePluginDependency {
publishProjectJars(listOf(":idea:idea-jps-common"))
publishProjectJars(listOf(":jps:jps-common"))
}
@@ -2,7 +2,7 @@ idePluginDependency {
@Suppress("UNCHECKED_CAST")
val compilerComponents = rootProject.extra["compilerModulesForJps"] as List<String>
val otherProjects = listOf(":kotlin-daemon-client", ":jps-plugin", ":idea:idea-jps-common", ":kotlin-reflect")
val otherProjects = listOf(":kotlin-daemon-client", ":jps:jps-plugin", ":jps:jps-common", ":kotlin-reflect")
publishProjectJars(compilerComponents + otherProjects, libraryDependencies = listOf(protobufFull()))
}