diff options
author | zaaarf <zaaarf@proton.me> | 2023-08-27 02:04:05 +0200 |
---|---|---|
committer | zaaarf <zaaarf@proton.me> | 2023-08-27 02:04:05 +0200 |
commit | 42438928705a97313497b4297f2143b7ff044e78 (patch) | |
tree | 9515ff94d097ac6f9df955cc734b0c25c295521f | |
parent | c01769084159feb8d3a46e7634bc9d70df1748e2 (diff) |
chore: added autoservice
-rw-r--r-- | build.gradle | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 8507fc0..d50a20f 100644 --- a/build.gradle +++ b/build.gradle @@ -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) |