Skip to content

Commit 03727db

Browse files
authored
Merge pull request #3098 from Nivanchenko/fix/exclude-commons-logging
Исключил commons-logging.
2 parents ac8f88b + 6479122 commit 03727db

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

build.gradle.kts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ dependencies {
7474
api("org.eclipse.lsp4j", "org.eclipse.lsp4j.websocket.jakarta", "0.21.0")
7575

7676
// 1c-syntax
77-
api("com.github.1c-syntax", "bsl-parser", "0.22.0") {
77+
api("com.github.1c-syntax", "bsl-parser", "bba7c0b091aca562ec082829a49f525a9bb5d7ef") {
7878
exclude("com.tunnelvisionlabs", "antlr4-annotations")
7979
exclude("com.ibm.icu", "*")
8080
exclude("org.antlr", "ST4")
@@ -88,7 +88,9 @@ dependencies {
8888
api("io.github.1c-syntax", "supportconf", "0.1.1")
8989

9090
// JLanguageTool
91-
implementation("org.languagetool", "languagetool-core", languageToolVersion)
91+
implementation("org.languagetool", "languagetool-core", languageToolVersion){
92+
exclude("commons-logging", "commons-logging")
93+
}
9294
implementation("org.languagetool", "language-en", languageToolVersion)
9395
implementation("org.languagetool", "language-ru", languageToolVersion)
9496

@@ -98,7 +100,9 @@ dependencies {
98100
// commons utils
99101
implementation("commons-io", "commons-io", "2.13.0")
100102
implementation("org.apache.commons", "commons-lang3", "3.12.0")
101-
implementation("commons-beanutils", "commons-beanutils", "1.9.4")
103+
implementation("commons-beanutils", "commons-beanutils", "1.9.4"){
104+
exclude("commons-logging", "commons-logging")
105+
}
102106
implementation("org.apache.commons", "commons-collections4", "4.4")
103107
implementation("org.apache.commons", "commons-exec", "1.3")
104108

0 commit comments

Comments
 (0)