17 lines
260 B
Text
17 lines
260 B
Text
|
plugins {
|
||
|
`kotlin-dsl`
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
maven("https://plugins.gradle.org/m2/")
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
kotlinDslPluginOptions {
|
||
|
experimentalWarning.set(false)
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation("com.diffplug.spotless:spotless-plugin-gradle:3.24.3")
|
||
|
}
|