conversations-classic/annotation-processor/build.gradle

14 lines
328 B
Groovy
Raw Normal View History

2023-02-17 13:14:31 +00:00
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'
}