Files
kotlin-fork/libraries/stdlib/samples/build.gradle
T
Yahor Berdnikau 6b19b8b9d0 [Repo] Don't use kotlinOptions in repo build scripts
^KT-63419 In Progress
2024-02-22 14:48:10 +00:00

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",
])
}
}