Files
kotlin-fork/libraries/stdlib/samples/build.gradle
T
2018-09-16 23:30:32 +03:00

22 lines
406 B
Groovy

apply plugin: 'kotlin'
dependencies {
compile project(':kotlin-stdlib-jdk8')
testCompile project(':kotlin-test:kotlin-test-junit')
}
sourceSets {
test.kotlin.srcDir 'test'
}
compileTestKotlin {
kotlinOptions.jdkHome = JDK_18
kotlinOptions.freeCompilerArgs += ["-XXLanguage:+ReleaseCoroutines"]
}
kotlin.experimental.coroutines 'enable'
test {
executable = "$JDK_18/bin/java"
}