From e09b71850ae3737253272452e84d4dbf9c9df77c Mon Sep 17 00:00:00 2001 From: Dmytro Galushko Date: Mon, 1 Jul 2024 09:17:32 +0300 Subject: [PATCH] add /downloads command --- bot/build.gradle | 4 ++-- core/build.gradle | 3 +-- text/build.gradle | 4 ++-- torrent/build.gradle | 3 +-- 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/bot/build.gradle b/bot/build.gradle index 3e894e7c..911fbd74 100644 --- a/bot/build.gradle +++ b/bot/build.gradle @@ -36,8 +36,8 @@ dependencies { implementation 'org.json:json:+' implementation 'org.slf4j:slf4j-log4j12:+' implementation fileTree(dir: System.getenv('CORE_LOCATION'), include: ['*.jar']) - compileOnly 'org.projectlombok:lombok:+' - annotationProcessor 'org.projectlombok:lombok:+' + implementation 'org.projectlombok:lombok:+' + implementation 'com.fasterxml.jackson.core:jackson-databind:+' } repositories { diff --git a/core/build.gradle b/core/build.gradle index e0ecd42a..b96490ce 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -23,8 +23,7 @@ dependencies { implementation 'com.rabbitmq:amqp-client:+' implementation 'org.json:json:+' implementation 'org.slf4j:slf4j-log4j12:+' - compileOnly 'org.projectlombok:lombok:+' - annotationProcessor 'org.projectlombok:lombok:+' + implementation 'org.projectlombok:lombok:+' implementation 'com.fasterxml.jackson.core:jackson-databind:+' implementation 'org.apache.httpcomponents:httpclient:+' } \ No newline at end of file diff --git a/text/build.gradle b/text/build.gradle index d300319d..421645c7 100644 --- a/text/build.gradle +++ b/text/build.gradle @@ -34,8 +34,8 @@ dependencies { implementation 'org.json:json:+' implementation 'org.slf4j:slf4j-log4j12:+' implementation fileTree(dir: System.getenv('CORE_LOCATION'), include: ['*.jar']) - compileOnly 'org.projectlombok:lombok:+' - annotationProcessor 'org.projectlombok:lombok:+' + implementation 'org.projectlombok:lombok:+' + implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.1' } repositories { diff --git a/torrent/build.gradle b/torrent/build.gradle index 87cfc472..b0ffbad1 100644 --- a/torrent/build.gradle +++ b/torrent/build.gradle @@ -34,8 +34,7 @@ dependencies { implementation 'org.json:json:+' implementation 'org.slf4j:slf4j-log4j12:+' implementation fileTree(dir: System.getenv('CORE_LOCATION'), include: ['*.jar']) - compileOnly 'org.projectlombok:lombok:+' - annotationProcessor 'org.projectlombok:lombok:+' + implementation 'org.projectlombok:lombok:+' implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.1' implementation 'org.apache.httpcomponents:httpclient:+' }