Skip to content

Commit

Permalink
Fixes #4102: make apache commons libraries that are now part of neo4j…
Browse files Browse the repository at this point in the history
… as provided or exclude them (#4128)
  • Loading branch information
vga91 authored Jul 3, 2024
1 parent b1a5e31 commit b222667
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
3 changes: 3 additions & 0 deletions extra-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ ext {
exclude group: 'io.netty', module: 'netty-transport-native-kqueue'
exclude group: 'io.netty', module: 'netty-transport-native-unix-common'
exclude group: 'io.netty', module: 'netty-tcnative-classes'

// logging
exclude group: 'org.apache.logging.log4j'
}
}

Expand Down
21 changes: 6 additions & 15 deletions extra-dependencies/xls/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,10 @@ jar {
}

dependencies {
implementation group: 'org.apache.poi', name: 'poi', version: '5.1.0', {
exclude group: 'org.apache.logging.log4j'
}
implementation group: 'org.apache.poi', name: 'poi-ooxml-lite', version: '5.1.0', {
exclude group: 'org.apache.logging.log4j'
}
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '5.1.0' , {
exclude group: 'org.apache.commons', module: 'commons-compress'
exclude group: 'org.apache.logging.log4j'
}
implementation group: 'org.apache.xmlbeans', name: 'xmlbeans', version: '5.0.2', {
exclude group: 'org.apache.logging.log4j'
}
implementation group: 'com.github.virtuald', name: 'curvesapi', version: '1.06'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'
implementation group: 'org.apache.poi', name: 'poi', version: '5.2.5', commonExclusions
implementation group: 'org.apache.poi', name: 'poi-ooxml-lite', version: '5.2.5', commonExclusions
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '5.2.5' , commonExclusions
implementation group: 'org.apache.xmlbeans', name: 'xmlbeans', version: '5.2.1', commonExclusions
implementation group: 'com.github.virtuald', name: 'curvesapi', version: '1.08', commonExclusions
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4', commonExclusions
}

0 comments on commit b222667

Please sign in to comment.