This is an automated email from the ASF dual-hosted git repository. madhan pushed a commit to branch atlas-2.5 in repository https://gitbox.apache.org/repos/asf/atlas.git
commit fbe70655c688cf826caf028be4e345995549e90f Author: chaitalicod <[email protected]> AuthorDate: Sat Jul 26 11:17:00 2025 +0530 ATLAS-5074: Upgrade poi-ooxml to 5.4.0 (#403) Co-authored-by: chaitalithombare <[email protected]> (cherry picked from commit 0482ca361341b7c99b69668cb3305d1c20b9e635) --- pom.xml | 4 ++-- repository/pom.xml | 12 ++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d4c7b5c17..944246964 100644 --- a/pom.xml +++ b/pom.xml @@ -164,8 +164,8 @@ <okio.version>3.4.0</okio.version> <opencsv.version>5.0</opencsv.version> <paranamer.version>2.7</paranamer.version> - <poi-ooxml.version>5.2.2</poi-ooxml.version> - <poi.version>5.2.2</poi.version> + <poi-ooxml.version>5.4.0</poi-ooxml.version> + <poi.version>5.4.0</poi.version> <project.build.dashboard.gruntBuild>run build</project.build.dashboard.gruntBuild> <project.build.dashboardv2.gruntBuild>build-minify</project.build.dashboardv2.gruntBuild> <project.build.dashboardv3.gruntBuild>build-minify</project.build.dashboardv3.gruntBuild> diff --git a/repository/pom.xml b/repository/pom.xml index c10f01cfe..ab0e789da 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -191,12 +191,24 @@ <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>${poi.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>${poi-ooxml.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency>
