2023-02-17 13:14:31 +00:00
|
|
|
apply plugin: "java-library"
|
|
|
|
|
|
|
|
java {
|
2023-03-10 19:03:32 +00:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2023-02-17 13:14:31 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
|
|
|
|
implementation project(':annotation')
|
|
|
|
|
|
|
|
annotationProcessor 'com.google.auto.service:auto-service:1.0.1'
|
2023-03-10 19:03:32 +00:00
|
|
|
api 'com.google.auto.service:auto-service-annotations:1.0.1'
|
|
|
|
implementation 'com.google.guava:guava:31.1-jre'
|
2023-02-17 13:14:31 +00:00
|
|
|
|
|
|
|
}
|