15 lines
188 B
Plaintext
15 lines
188 B
Plaintext
import org.jetbrains.kotlin.gradle.plugin.*
|
|
import java.util.*
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
kotlinDslPluginOptions {
|
|
experimentalWarning.set(false)
|
|
}
|