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

21 lines
392 B
Groovy

plugins {
id 'java-library'
}
repositories {
google()
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
dependencies {
implementation project(':libs:annotation')
annotationProcessor 'com.google.auto.service:auto-service:1.0-rc5'
compileOnly 'com.google.auto.service:auto-service:1.0-rc5'
}