chore: added autoservice

This commit is contained in:
zaaarf 2023-08-27 02:04:05 +02:00
parent c017690841
commit 4243892870
No known key found for this signature in database
GPG key ID: 6445A5CD15E5B40C

View file

@ -21,7 +21,10 @@ repositories {
dependencies {
implementation 'commons-cli:commons-cli:1.5.0'
implementation 'ftbsc.lll:mapper:0.2.1'
implementation 'ftbsc.lll:mapper:0.2.2'
implementation 'com.google.auto.service:auto-service-annotations:1.1.0'
annotationProcessor 'com.google.auto.service:auto-service:1.1.0'
}
jar {
@ -31,4 +34,10 @@ jar {
}
}
shadowJar {
dependencies {
exclude(dependency('com.google.auto.service:auto-service-annotations:1.1.0'))
}
}
build.dependsOn(shadowJar)