From dfbb35e6693e745085f7d5829845e9655216eade Mon Sep 17 00:00:00 2001 From: Nikita Ivanchenko Date: Sun, 16 Jul 2023 01:52:37 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BA=D0=BB=D1=8E=D1=87=D0=B8?= =?UTF-8?q?=D0=BB=20commons-logging.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle.kts | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 36cf05bd14a..0e0d12d8666 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -54,14 +54,6 @@ val isSnapshot = gitVersioning.gitVersionDetails.refType != GitRefType.TAG val languageToolVersion = "6.1" -allprojects { - configurations { - all { - exclude(group = "commons-logging") - } - } -} - dependencyManagement { imports { mavenBom("io.sentry:sentry-bom:6.25.2") @@ -96,7 +88,9 @@ dependencies { api("io.github.1c-syntax", "supportconf", "0.1.1") // JLanguageTool - implementation("org.languagetool", "languagetool-core", languageToolVersion) + implementation("org.languagetool", "languagetool-core", languageToolVersion){ + exclude("commons-logging", "commons-logging") + } implementation("org.languagetool", "language-en", languageToolVersion) implementation("org.languagetool", "language-ru", languageToolVersion) @@ -106,7 +100,9 @@ dependencies { // commons utils implementation("commons-io", "commons-io", "2.13.0") implementation("org.apache.commons", "commons-lang3", "3.12.0") - implementation("commons-beanutils", "commons-beanutils", "1.9.4") + implementation("commons-beanutils", "commons-beanutils", "1.9.4"){ + exclude("commons-logging", "commons-logging") + } implementation("org.apache.commons", "commons-collections4", "4.4") implementation("org.apache.commons", "commons-exec", "1.3")