a64a76d5fc
It has no effect in Kotlin 1.3 Only enable coroutines if '-ReleaseCoroutines' is used
22 lines
505 B
Kotlin
22 lines
505 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":examples:scripting-jvm-maven-deps"))
|
|
compile(project(":kotlin-scripting-jvm-host"))
|
|
compile(project(":kotlin-stdlib"))
|
|
compileOnly(project(":kotlin-reflect-api"))
|
|
compileOnly(project(":compiler:util"))
|
|
runtime(project(":kotlin-reflect"))
|
|
|
|
testRuntimeOnly(projectRuntimeJar(":kotlin-compiler"))
|
|
testCompile(commonDep("junit"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|