Files
2021-09-26 20:10:29 +03:00

19 lines
384 B
Kotlin

description = "Kotlin Scripting Compiler Plugin for embeddable compiler"
plugins {
java
}
dependencies {
embedded(project(":kotlin-scripting-compiler")) { isTransitive = false }
runtimeOnly(project(":kotlin-scripting-compiler-impl-embeddable"))
runtimeOnly(kotlinStdlib())
}
publish()
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
sourcesJar()
javadocJar()