Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Релиз 2024.1 #14

Merged
merged 3 commits into from
Apr 15, 2024
Merged
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
24 changes: 18 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@

<groupId>org.spacious-team</groupId>
<artifactId>table-wrapper-excel-impl</artifactId>
<version>2023.1</version>
<version>2024.1</version>
<packaging>jar</packaging>

<name>Table Wrapper API Excel Implementation</name>
<description>
Implements unified Table Wrapper API for excel format and helps to
Implements unified Table Wrapper API for Excel format and helps to
easily search and access to row, column, and cell value.
</description>
<url>https://github.com/spacious-team/table-wrapper-excel-impl</url>
Expand Down Expand Up @@ -64,8 +64,9 @@
<maven.compiler.release>11</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<lombok.version>1.18.28</lombok.version>
<checkerframework.version>3.32.0</checkerframework.version>
<lombok.version>1.18.32</lombok.version>
<checkerframework.version>3.42.0</checkerframework.version>
<apache-poi.version>5.2.5</apache-poi.version>
</properties>

<repositories>
Expand All @@ -83,6 +84,17 @@
</repository>
</repositories>

<dependencyManagement>
<dependencies>
<!-- org.apache.poi:poi-ooxml vulnerability fix https://devhub.checkmarx.com/cve-details/CVE-2024-26308/ -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.26.1</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>com.github.spacious-team</groupId>
Expand All @@ -92,12 +104,12 @@
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>5.2.3</version>
<version>${apache-poi.version}</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>5.2.3</version>
<version>${apache-poi.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
Expand Down
Loading