Files
PhotonVision/photonlib-cpp-examples/build.gradle
2026-01-12 14:00:11 -08:00

28 lines
548 B
Groovy

plugins {
id "com.diffplug.spotless" version "8.1.0"
}
allprojects {
repositories {
maven { url = "https://frcmaven.wpi.edu/artifactory/ex-mvn/" }
mavenCentral()
mavenLocal()
maven { url = "https://maven.photonvision.org/releases" }
}
}
spotless {
java {
toggleOffOn()
googleJavaFormat()
indentWithTabs(2)
indentWithSpaces(4)
removeUnusedImports()
trimTrailingWhitespace()
endWithNewline()
}
java {
target "**/*.java"
}
}