blob: 63dbe8a197c239429caba29b253cb7be64a9d435 [file]
description = "Compiler runner + daemon client"
plugins {
kotlin("jvm")
}
dependencies {
embedded(project(":kotlin-compiler-runner-unshaded")) { isTransitive = false }
api(project(":kotlin-daemon-client"))
api(libs.kotlinx.coroutines.core) { isTransitive = false }
runtimeOnly(project(":kotlin-compiler-embeddable"))
}
sourceSets {
"main" { }
"test" { }
}
publish()
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
sourcesJar()
javadocJar()