blob: f24268aa99f966615246e5ca704f6584c5747e64 [file]
apply plugin: 'kotlin'
dependencies {
api project(':kotlin-stdlib-jdk8')
testApi RepoDependencies.kotlinTest(project, "junit")
}
sourceSets {
test.kotlin.srcDir 'test'
}
compileTestKotlin {
compilerOptions {
optIn.addAll([
"kotlin.ExperimentalStdlibApi",
"kotlin.ExperimentalUnsignedTypes",
])
}
}