Files

27 lines
477 B
Groovy
Raw Permalink Normal View History

2024-12-09 08:01:09 -07:00
plugins {
id "com.diffplug.spotless" version "6.1.2"
}
allprojects {
repositories {
mavenCentral()
mavenLocal()
maven { url = "https://maven.photonvision.org/releases" }
}
}
spotless {
java {
toggleOffOn()
googleJavaFormat()
indentWithTabs(2)
indentWithSpaces(4)
removeUnusedImports()
trimTrailingWhitespace()
endWithNewline()
}
java {
target "**/*.java"
}
}