Files
allwpilib/epilogue-processor/build.gradle
Sam Carlberg 793b0a3187 [build] Migrate to Gradle version catalogs (#8524)
Also fixes the google compile-testing library to 0.23.0 (the latest
available at time of writing) instead of a wildcard

Jackson versions were inconsistent across projects; most were on 2.19.2,
but the fields subproject was on 2.15.2. All projects are now on 2.19.2
for consistency
2026-02-20 15:31:33 -08:00

18 lines
333 B
Groovy

ext {
useJava = true
useCpp = false
baseId = 'epilogue-processor'
groupId = 'org.wpilib.epilogue'
devMain = ''
}
apply from: "${rootDir}/shared/java/javacommon.gradle"
dependencies {
implementation(project(':epilogue-runtime'))
api project(':commandsv2')
testImplementation libs.compile.testing
}