conversations-classic/annotation-processor/build.gradle
2023-03-01 22:05:42 +01:00

14 lines
328 B
Groovy

apply plugin: "java-library"
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
dependencies {
implementation project(':annotation')
annotationProcessor 'com.google.auto.service:auto-service:1.0.1'
compileOnly 'com.google.auto.service:auto-service:1.0.1'
}