Files
allwpilib/epilogue-runtime/build.gradle
2025-11-07 23:09:21 -08:00

19 lines
399 B
Groovy

ext {
useJava = true
useCpp = false
baseId = 'epilogue-runtime'
groupId = 'org.wpilib.epilogue'
devMain = ''
}
apply from: "${rootDir}/shared/java/javacommon.gradle"
dependencies {
api(project(':datalog'))
api(project(':ntcore'))
api(project(':wpiutil'))
api(project(':wpiunits'))
testImplementation(project(':wpimath')) // for convenient protobuf types
}