20 lines
388 B
Groovy
20 lines
388 B
Groovy
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
api project(':kotlin-stdlib-jdk8')
|
|
testApi RepoDependencies.kotlinTest(project, "junit")
|
|
}
|
|
|
|
sourceSets {
|
|
test.kotlin.srcDir 'test'
|
|
}
|
|
|
|
compileTestKotlin {
|
|
kotlinOptions {
|
|
freeCompilerArgs = [
|
|
"-opt-in=kotlin.ExperimentalStdlibApi",
|
|
"-opt-in=kotlin.ExperimentalUnsignedTypes",
|
|
]
|
|
}
|
|
}
|