diff options
author | zaaarf <zaaarf@proton.me> | 2023-06-11 15:26:02 +0200 |
---|---|---|
committer | zaaarf <zaaarf@proton.me> | 2023-06-11 15:26:02 +0200 |
commit | 957a0a5f33bfebd76f5307009f3ef5160da5158d (patch) | |
tree | 690be0562028ca4e6620309b75365ab2f913478a /build.gradle | |
parent | e4f8a565f6fe94a73ce8e3e8d2e70a9f314fa56a (diff) |
fix: implemented autoservice0.0.2
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 7c18fc6..2b3c16b 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ plugins { id 'com.palantir.git-version' version '0.13.0' } -archivesBaseName = 'lll-mapper' +archivesBaseName = 'mapper' version = gitVersion() java { @@ -19,7 +19,9 @@ repositories { } dependencies { - implementation 'ftbsc:lll:0.4.1' + implementation 'ftbsc:lll:0.4.2' + implementation 'com.google.auto.service:auto-service-annotations:1.1.0' + annotationProcessor 'com.google.auto.service:auto-service:1.1.0' } jar { |