mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
19 lines
402 B
Groovy
19 lines
402 B
Groovy
ext {
|
|
useJava = true
|
|
useCpp = false
|
|
baseId = 'epilogue-runtime'
|
|
groupId = 'edu.wpi.first.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
|
|
}
|