7789054547
^KT-46972 Fixed
21 lines
451 B
Groovy
21 lines
451 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 {
|
|
freeCompilerArgs = [
|
|
"-Xopt-in=kotlin.ExperimentalStdlibApi",
|
|
"-Xopt-in=kotlin.ExperimentalUnsignedTypes",
|
|
"-Xopt-in=kotlin.time.ExperimentalTime",
|
|
]
|
|
}
|
|
}
|