2022-12-16 17:05:23 -08:00
|
|
|
plugins {
|
2026-04-13 13:40:45 -05:00
|
|
|
id "com.diffplug.spotless" version "8.4.0"
|
2021-01-16 20:41:47 -08:00
|
|
|
}
|
|
|
|
|
|
2022-12-16 17:05:23 -08:00
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
2026-01-04 19:23:42 -08:00
|
|
|
maven { url = "https://frcmaven.wpi.edu/artifactory/ex-mvn/" }
|
2022-12-16 17:05:23 -08:00
|
|
|
mavenCentral()
|
|
|
|
|
mavenLocal()
|
2024-05-29 12:29:08 -05:00
|
|
|
maven { url = "https://maven.photonvision.org/releases" }
|
2022-12-16 17:05:23 -08:00
|
|
|
}
|
2021-01-16 20:41:47 -08:00
|
|
|
}
|
|
|
|
|
|
2022-12-16 17:05:23 -08:00
|
|
|
spotless {
|
|
|
|
|
java {
|
|
|
|
|
toggleOffOn()
|
|
|
|
|
googleJavaFormat()
|
|
|
|
|
indentWithTabs(2)
|
|
|
|
|
indentWithSpaces(4)
|
|
|
|
|
removeUnusedImports()
|
|
|
|
|
trimTrailingWhitespace()
|
|
|
|
|
endWithNewline()
|
|
|
|
|
}
|
|
|
|
|
java {
|
|
|
|
|
target "**/*.java"
|
2021-01-16 20:41:47 -08:00
|
|
|
}
|
|
|
|
|
}
|