Hacky commit to publish remaining Maven artifacts for 1.7.20-release-201
People aren't able to compile intellij without those artifacts
diff --git a/build.gradle.kts b/build.gradle.kts
index d4a5d29..a297afa 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -273,7 +273,6 @@
extra["kotlinJpsPluginMavenDependencies"] = listOf(
":kotlin-daemon-client",
":kotlin-build-common",
- ":kotlin-reflect",
":kotlin-util-io",
":kotlin-util-klib",
":kotlin-util-klib-metadata",
@@ -720,13 +719,13 @@
register("publishIdeArtifacts") {
idePluginDependency {
- dependsOn((rootProject.extra["compilerArtifactsForIde"] as List<String>).map { "$it:publish" })
+ dependsOn((rootProject.extra["kotlinJpsPluginMavenDependencies"] as List<String>).map { "$it:publish" })
}
}
register("installIdeArtifacts") {
idePluginDependency {
- dependsOn((rootProject.extra["compilerArtifactsForIde"] as List<String>).map { "$it:install" })
+ dependsOn((rootProject.extra["kotlinJpsPluginMavenDependencies"] as List<String>).map { "$it:install" })
}
}
}