Make it possible to depend on the rest of :prepare:ide-plugin-dependencies modules

Those modules used as "aggregate" modules. kotlin-ide modules depend on them in coop-dev
This commit is contained in:
Nikita Bobko
2021-05-27 16:17:28 +02:00
parent 961ee92c15
commit 2d015da1ea
3 changed files with 17 additions and 11 deletions
@@ -1,6 +1,8 @@
idePluginDependency {
publishProjectJars(listOf(
":compiler:cli",
":compiler:cli-js"
))
}
plugins {
kotlin("jvm")
}
publishJarsForIde(listOf(
":compiler:cli",
":compiler:cli-js"
))
@@ -1,3 +1,5 @@
idePluginDependency {
publishTestJar(listOf(":compiler:test-infrastructure", ":compiler:tests-common-new", ":compiler:test-infrastructure-utils"))
}
plugins {
kotlin("jvm")
}
publishJarsForIde(listOf(":compiler:test-infrastructure", ":compiler:tests-common-new", ":compiler:test-infrastructure-utils"))
@@ -1,3 +1,5 @@
idePluginDependency {
publishProjectJars(listOf(":plugins:lombok:lombok-compiler-plugin"))
plugins {
kotlin("jvm")
}
publishJarsForIde(listOf(":plugins:lombok:lombok-compiler-plugin"))