mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
20 lines
502 B
Groovy
20 lines
502 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')
|
|
|
|
implementation 'com.google.auto.service:auto-service:1.1.1'
|
|
annotationProcessor 'com.google.auto.service:auto-service:1.1.1'
|
|
testImplementation 'com.google.testing.compile:compile-testing:+'
|
|
}
|