monocles_chat/libs/annotation-processor/build.gradle
Daniel Gultsch 39d38fa2b1 bump guava in annotation-processor
(cherry picked from commit ae8cf0d7e4b5d96478e51966fb6d257986f71c1b)
2025-03-18 12:44:16 +01:00

20 lines
No EOL
442 B
Groovy

apply plugin: "java-library"
repositories {
google()
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
dependencies {
implementation project(':libs:annotation')
annotationProcessor 'com.google.auto.service:auto-service:1.0.1'
api 'com.google.auto.service:auto-service-annotations:1.0.1'
implementation 'com.google.guava:guava:33.4.0-jre'
}