aboutsummaryrefslogtreecommitdiff
path: root/buildSrc/build.gradle.kts
blob: 8c3ae64d315fb553cf3cc2707ff879e24b7dd541 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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")
}