f91d6958a8
#KTI-559
19 lines
432 B
Kotlin
19 lines
432 B
Kotlin
description = "Kotlin Compiler Infrastructure for Scripting for embeddable compiler"
|
|
|
|
plugins {
|
|
java
|
|
}
|
|
|
|
dependencies {
|
|
embedded(project(":kotlin-scripting-compiler-impl")) { isTransitive = false }
|
|
runtimeOnly(project(":kotlin-scripting-common"))
|
|
runtimeOnly(project(":kotlin-scripting-jvm"))
|
|
runtimeOnly(kotlinStdlib())
|
|
}
|
|
|
|
publish()
|
|
|
|
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
|
|
sourcesJar()
|
|
javadocJar()
|