dec8eb7899
it conflicts with the compilation on daemon, so transistion should be planned accordingly, and now it is not a good time for it. The most important part of the renaming remains intact. Partially reverts commit "Rename scripting libs and plugin - invert embeddable suffix"
29 lines
668 B
Kotlin
29 lines
668 B
Kotlin
import org.gradle.jvm.tasks.Jar
|
|
|
|
description = "Kotlin Scripting JVM host (for using with embeddable compiler)"
|
|
|
|
plugins { java }
|
|
|
|
dependencies {
|
|
embedded(project(":kotlin-scripting-jvm-host-unshaded")) { isTransitive = false }
|
|
runtime(project(":kotlin-script-runtime"))
|
|
runtime(kotlinStdlib())
|
|
runtime(project(":kotlin-scripting-common"))
|
|
runtime(project(":kotlin-scripting-jvm"))
|
|
runtime(project(":kotlin-compiler-embeddable"))
|
|
runtime(project(":kotlin-scripting-compiler-embeddable"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" {}
|
|
"test" {}
|
|
}
|
|
|
|
publish()
|
|
|
|
noDefaultJar()
|
|
|
|
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
|
|
sourcesJar()
|
|
javadocJar()
|