Skip to content

Commit

Permalink
[Io7UetI2] Update org.apache.poi to 5.3.0 to mitigate CVE-2024-25710
Browse files Browse the repository at this point in the history
  • Loading branch information
Lojjs committed Sep 3, 2024
1 parent 7e6cf18 commit 8c91789
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions docs/asciidoc/modules/ROOT/partials/xls-dependencies.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ Once that file is downloaded, it should be placed in the `plugins` directory and
Alternatively, you can download these jars from Maven Repository (putting them into `plugins` directory as well):

.For XLS files:
* https://repo1.maven.org/maven2/org/apache/poi/poi/5.1.0/poi-5.1.0.jar[poi-5.1.0.jar^]
* https://repo1.maven.org/maven2/org/apache/poi/poi/5.3.0/poi-5.3.0.jar[poi-5.3.0.jar^]
.Additional for XLSX files:
* https://repo1.maven.org/maven2/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar[commons-collections4-4.4.jar^]
* https://repo1.maven.org/maven2/org/apache/poi/poi-ooxml/5.1.0/poi-ooxml-5.1.0.jar[poi-ooxml-5.1.0.jar^]
* https://repo1.maven.org/maven2/org/apache/poi/poi-ooxml-lite/5.1.0/poi-ooxml-lite-5.1.0.jar[poi-ooxml-lite-5.1.0.jar^]
* https://repo1.maven.org/maven2/org/apache/poi/poi-ooxml/5.3.0/poi-ooxml-5.3.0.jar[poi-ooxml-5.3.0.jar^]
* https://repo1.maven.org/maven2/org/apache/poi/poi-ooxml-lite/5.3.0/poi-ooxml-lite-5.3.0.jar[poi-ooxml-lite-5.3.0.jar^]
* https://repo1.maven.org/maven2/org/apache/xmlbeans/xmlbeans/5.0.2/xmlbeans-5.0.2.jar[xmlbeans-5.0.2.jar^]
* https://repo1.maven.org/maven2/com/github/virtuald/curvesapi/1.06/curvesapi-1.06.jar[curvesapi-1.06.jar^]
6 changes: 3 additions & 3 deletions extra-dependencies/xls/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jar {
}

dependencies {
implementation group: 'org.apache.poi', name: 'poi', version: '5.1.0'
implementation group: 'org.apache.poi', name: 'poi-ooxml-lite', version: '5.1.0'
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '5.1.0' , {
implementation group: 'org.apache.poi', name: 'poi', version: '5.3.0'
implementation group: 'org.apache.poi', name: 'poi-ooxml-lite', version: '5.3.0'
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '5.3.0' , {
exclude group: 'org.apache.commons', module: 'commons-compress'
}
implementation group: 'org.apache.xmlbeans', name: 'xmlbeans', version: '5.0.2'
Expand Down
8 changes: 4 additions & 4 deletions full/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ dependencies {
// compileOnly "org.antlr:antlr4-runtime:4.7.2"
// testCompile "org.antlr:antlr4-runtime:4.7.2"

compileOnly "org.apache.poi:poi:5.1.0"
testImplementation "org.apache.poi:poi:5.1.0"
compileOnly "org.apache.poi:poi-ooxml:5.1.0"
testImplementation "org.apache.poi:poi-ooxml:5.1.0"
compileOnly "org.apache.poi:poi:5.3.0"
testImplementation "org.apache.poi:poi:5.3.0"
compileOnly "org.apache.poi:poi-ooxml:5.3.0"
testImplementation "org.apache.poi:poi-ooxml:5.3.0"

implementation 'org.jsoup:jsoup:1.15.3'

Expand Down

0 comments on commit 8c91789

Please sign in to comment.