17 lines
529 B
Kotlin
17 lines
529 B
Kotlin
|
|
description = "Sample Kotlin JSR 223 scripting jar with daemon (out-of-process) compilation and local (in-process) evaluation"
|
|
|
|
apply { plugin("kotlin") }
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-stdlib"))
|
|
compile(project(":kotlin-script-runtime"))
|
|
compile(projectRuntimeJar(":kotlin-compiler"))
|
|
compile(project(":kotlin-script-util"))
|
|
compile(projectRuntimeJar(":kotlin-daemon-client"))
|
|
testCompile(project(":kotlin-test:kotlin-test-junit"))
|
|
testRuntime(project(":kotlin-reflect"))
|
|
}
|
|
|
|
projectTest()
|