Files
kotlin-fork/compiler/compiler-runner/build.gradle.kts
T
Vyacheslav Gerasimov 29787218e1 Build: Add proper kotlin-compiler-runner-unshaded for ide artifacts
Fixes tests in kt-212-master branch of kotlin plugin in
intellij-community repository
2021-09-28 13:42:31 +03:00

28 lines
578 B
Kotlin

description = "Compiler runner + daemon client"
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
embedded(project(":kotlin-compiler-runner-unshaded")) { isTransitive = false }
api(project(":kotlin-build-common"))
api(project(":kotlin-daemon-client"))
api(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false }
runtimeOnly(project(":kotlin-compiler-embeddable"))
}
sourceSets {
"main" { }
"test" { }
}
publish()
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
sourcesJar()
javadocJar()