@@ -54,14 +54,6 @@ val isSnapshot = gitVersioning.gitVersionDetails.refType != GitRefType.TAG
54
54
55
55
val languageToolVersion = " 6.1"
56
56
57
- allprojects {
58
- configurations {
59
- all {
60
- exclude(group = " commons-logging" )
61
- }
62
- }
63
- }
64
-
65
57
dependencyManagement {
66
58
imports {
67
59
mavenBom(" io.sentry:sentry-bom:6.25.2" )
@@ -96,7 +88,9 @@ dependencies {
96
88
api(" io.github.1c-syntax" , " supportconf" , " 0.1.1" )
97
89
98
90
// JLanguageTool
99
- implementation(" org.languagetool" , " languagetool-core" , languageToolVersion)
91
+ implementation(" org.languagetool" , " languagetool-core" , languageToolVersion){
92
+ exclude(" commons-logging" , " commons-logging" )
93
+ }
100
94
implementation(" org.languagetool" , " language-en" , languageToolVersion)
101
95
implementation(" org.languagetool" , " language-ru" , languageToolVersion)
102
96
@@ -106,7 +100,9 @@ dependencies {
106
100
// commons utils
107
101
implementation(" commons-io" , " commons-io" , " 2.13.0" )
108
102
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
+ }
110
106
implementation(" org.apache.commons" , " commons-collections4" , " 4.4" )
111
107
implementation(" org.apache.commons" , " commons-exec" , " 1.3" )
112
108
0 commit comments