mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
18 lines
359 B
Groovy
18 lines
359 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 'com.google.testing.compile:compile-testing:+'
|
|
}
|