* build: update build-time dependencies, address new warnings * build: switch to central repo declaration, remove redundant repositories * build: use spotless predeclaration, more task avoidance on kotlin modules
18 lines
384 B
Kotlin
18 lines
384 B
Kotlin
import net.ltgt.gradle.errorprone.errorprone
|
|
|
|
plugins {
|
|
id("cloud.base-conventions")
|
|
id("com.palantir.revapi")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.cloudCore)
|
|
|
|
testImplementation(libs.compileTesting)
|
|
}
|
|
|
|
tasks.withType(JavaCompile::class).configureEach {
|
|
options.errorprone {
|
|
disable("UnusedMethod") // false positives from command annotations
|
|
}
|
|
}
|