Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 5 additions & 36 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,13 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<!-- Project Dependencies -->
<apache-poi.version>5.2.5</apache-poi.version> <!-- reminder - remove the explicit commons-compress dependency when this gets updated. -->
<commons-collections4.version>4.4</commons-collections4.version>
<commons-compress.version>1.26.0</commons-compress.version> <!-- Included to address CVE-2024-25710 and CVE-2024-26308 -->
<apache-poi.version>5.5.1</apache-poi.version>
<commons-collections4.version>4.5.0</commons-collections4.version>

<!-- Testing Dependencies -->
<junit.version>5.10.2</junit.version>
<mockito.version>5.10.0</mockito.version>
<hamcrest.version>2.2</hamcrest.version>
<junit-addons.version>1.4</junit-addons.version>
<junit.version>5.14.1</junit.version>
<mockito.version>5.21.0</mockito.version>
<hamcrest.version>3.0</hamcrest.version>
<jimfs.version>1.3.0</jimfs.version>
</properties>

Expand All @@ -44,12 +42,6 @@
<artifactId>poi-ooxml</artifactId>
<version>${apache-poi.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.26.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
Expand All @@ -75,29 +67,6 @@
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit-addons</groupId>
<artifactId>junit-addons</artifactId>
<version>${junit-addons.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<!-- Exclude this really old version of junit that junit-addons depends on -->
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
<exclusion>
<!-- Exclude this really old version of xerces that junit-addons depends on -->
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
<exclusion>
<!-- Exclude this really old version of xerces that junit-addons depends on -->
<groupId>xerces</groupId>
<artifactId>xmlParserAPIs</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
Expand Down