cc59716b39
prevent constant reindexing of the compiler jar
1 line
529 B
Kotlin
1 line
529 B
Kotlin
import org.jetbrains.kotlin.gradle.dsl.Coroutines
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":examples:scripting-jvm-simple-script"))
|
|
compile(project(":kotlin-scripting-jvm-host"))
|
|
compile(project(":kotlin-scripting-misc"))
|
|
compile(project(":kotlin-script-util"))
|
|
runtime(projectRuntimeJar(":kotlin-compiler"))
|
|
testCompile(commonDep("junit"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
kotlin {
|
|
experimental.coroutines = Coroutines.ENABLE
|
|
} |