[build] do not build kotlin-compiler-for-ide as it's unused in the IDE Plugin

This commit is contained in:
Ilya Kirillov
2023-10-09 21:31:51 +02:00
committed by Space Team
parent 5acdc865b6
commit b3226b9b78
3 changed files with 0 additions and 37 deletions
@@ -1,35 +0,0 @@
/*
This artifact is deprecated should be used only for compatibility reasons for existing IDE branches like kt-211-master, kt-203-master
kotlin-compiler-for-ide was split into multiple jars: kotlin-compiler-fe10-for-ide, kotlin-compiler-common-for-ide, kotlin-compiler-fir-for-ide, etc
For kt-212-master IDE branch and newer split compiler jars should be used:
*/
plugins {
kotlin("jvm")
}
val compilerModules: Array<String> by rootProject.extra
val excludedCompilerModules = listOf(
":compiler:cli",
":compiler:cli-js",
":compiler:javac-wrapper",
":compiler:backend.js",
":compiler:backend.wasm",
":js:js.dce",
":compiler:ir.serialization.js",
":compiler:incremental-compilation-impl",
":compiler:fir:raw-fir:light-tree2fir"
)
val projects = compilerModules.asList() - excludedCompilerModules + listOf(
":kotlin-compiler-runner-unshaded",
":kotlin-preloader",
":daemon-common",
":kotlin-daemon-client"
)
publishJarsForIde(
projects = projects,
libraryDependencies = listOf(protobufFull())
)