blob: 80323292fe229490fd5bba8ca93de2efb69e60ee [file] [log] [blame]
description = "Sample Kotlin JSR 223 scripting jar with local (in-process) compilation and evaluation"
apply { plugin("kotlin") }
dependencies {
compile(projectDist(":kotlin-stdlib"))
compile(projectDist(":kotlin-script-runtime"))
compile(projectRuntimeJar(":kotlin-compiler"))
compile(project(":kotlin-script-util"))
testCompile(projectDist(":kotlin-test:kotlin-test-junit"))
testCompile(commonDep("junit:junit"))
testRuntime(projectDist(":kotlin-reflect"))
}
projectTest()