Skip to content

Commit 0d6b6cf

Browse files
authored
Fix 2025.09 conflict startup errors (#4487)
1 parent 68ea9b9 commit 0d6b6cf

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

extra-dependencies/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,14 @@ ext {
9595

9696
// javax
9797
exclude group: 'javax.servlet', module: 'javax.servlet-api'
98+
99+
// org.apache.logging
100+
exclude group: 'org.apache.logging.log4j', module: 'log4j-api'
101+
exclude group: 'org.apache.logging.log4j', module: 'log4j-core'
102+
exclude group: 'org.apache.logging.log4j', module: 'log4j-layout-template-json'
103+
104+
// commons.io
105+
exclude group: 'commons-io', module: 'commons-io'
98106
}
99107
}
100108

extra-dependencies/xls/build.gradle

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@ jar {
1818
}
1919

2020
dependencies {
21-
implementation group: 'org.apache.poi', name: 'poi', version: '5.2.5', commonExclusions
22-
implementation group: 'org.apache.poi', name: 'poi-ooxml-lite', version: '5.2.5', commonExclusions
23-
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '5.2.5' , commonExclusions
24-
implementation group: 'org.apache.xmlbeans', name: 'xmlbeans', version: '5.2.1', commonExclusions
21+
implementation group: 'org.apache.poi', name: 'poi', version: '5.4.1', commonExclusions
22+
implementation group: 'org.apache.poi', name: 'poi-ooxml-lite', version: '5.4.1', commonExclusions
23+
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '5.4.1', commonExclusions
24+
implementation group: 'org.apache.xmlbeans', name: 'xmlbeans', version: '5.3.0', commonExclusions
2525
implementation group: 'com.github.virtuald', name: 'curvesapi', version: '1.08', commonExclusions
26-
implementation group: 'commons-io', name: 'commons-io', version: '2.17.0', commonExclusions
27-
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4', commonExclusions
26+
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.5.0', commonExclusions
2827
}

0 commit comments

Comments
 (0)