a64a76d5fc
It has no effect in Kotlin 1.3 Only enable coroutines if '-ReleaseCoroutines' is used
19 lines
429 B
Kotlin
19 lines
429 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":examples:scripting-jvm-simple-script"))
|
|
compile(project(":kotlin-scripting-jvm-host"))
|
|
compile(project(":kotlin-script-util"))
|
|
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
|
|
testRuntimeOnly(project(":kotlin-reflect"))
|
|
testCompile(commonDep("junit"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|