mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
This makes potential future compilation with CMake easier and reduces the amount of external code we depend on.
18 lines
369 B
Groovy
18 lines
369 B
Groovy
ext {
|
|
useJava = true
|
|
useCpp = false
|
|
baseId = 'epilogue-processor'
|
|
groupId = 'edu.wpi.first.epilogue'
|
|
|
|
devMain = ''
|
|
}
|
|
|
|
apply from: "${rootDir}/shared/java/javacommon.gradle"
|
|
|
|
dependencies {
|
|
implementation(project(':epilogue-runtime'))
|
|
api project(':wpilibNewCommands')
|
|
|
|
testImplementation 'com.google.testing.compile:compile-testing:+'
|
|
}
|