blob: 27bccc28aa1902a9b1bc7ac3d8f77b7e0008d60f [file] [log] [blame]
apply plugin: 'kotlin'
dependencies {
compile project(':kotlin-stdlib-jre8')
testCompile project(':kotlin-test:kotlin-test-junit')
}
sourceSets {
test.kotlin.srcDir 'test'
}
compileTestKotlin {
kotlinOptions.jdkHome = JDK_18
}
kotlin.experimental.coroutines 'enable'
test {
executable = "$JDK_18/bin/java"
}