Skip to content

Commit dfbb35e

Browse files
committed
Исключил commons-logging.
1 parent 643d8fd commit dfbb35e

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

build.gradle.kts

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,6 @@ val isSnapshot = gitVersioning.gitVersionDetails.refType != GitRefType.TAG
5454

5555
val languageToolVersion = "6.1"
5656

57-
allprojects {
58-
configurations {
59-
all {
60-
exclude(group = "commons-logging")
61-
}
62-
}
63-
}
64-
6557
dependencyManagement {
6658
imports {
6759
mavenBom("io.sentry:sentry-bom:6.25.2")
@@ -96,7 +88,9 @@ dependencies {
9688
api("io.github.1c-syntax", "supportconf", "0.1.1")
9789

9890
// JLanguageTool
99-
implementation("org.languagetool", "languagetool-core", languageToolVersion)
91+
implementation("org.languagetool", "languagetool-core", languageToolVersion){
92+
exclude("commons-logging", "commons-logging")
93+
}
10094
implementation("org.languagetool", "language-en", languageToolVersion)
10195
implementation("org.languagetool", "language-ru", languageToolVersion)
10296

@@ -106,7 +100,9 @@ dependencies {
106100
// commons utils
107101
implementation("commons-io", "commons-io", "2.13.0")
108102
implementation("org.apache.commons", "commons-lang3", "3.12.0")
109-
implementation("commons-beanutils", "commons-beanutils", "1.9.4")
103+
implementation("commons-beanutils", "commons-beanutils", "1.9.4"){
104+
exclude("commons-logging", "commons-logging")
105+
}
110106
implementation("org.apache.commons", "commons-collections4", "4.4")
111107
implementation("org.apache.commons", "commons-exec", "1.3")
112108

0 commit comments

Comments
 (0)