6b19b8b9d0
^KT-63419 In Progress
20 lines
369 B
Groovy
20 lines
369 B
Groovy
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",
|
|
])
|
|
}
|
|
}
|