Skip to content

Commit

Permalink
- deps update
Browse files Browse the repository at this point in the history
- mysql test container update
- java 21 tests
  • Loading branch information
firegloves committed Jul 1, 2024
1 parent d0b6151 commit 8d9cfbb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11, 17]
java: [8, 11, 17, 21]
steps:
# checkout
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
![Java 8](https://img.shields.io/badge/Java%208-Tested-blueviolet)
![Java 11](https://img.shields.io/badge/Java%2011-Tested-blueviolet)
![Java 17](https://img.shields.io/badge/Java%2017-Tested-blueviolet)
![Java 21](https://img.shields.io/badge/Java%2021-Tested-blueviolet)
[![Known Vulnerabilities](https://snyk.io/test/github/firegloves/mempoi/badge.svg)](https://snyk.io/test/github/firegloves/mempoi)
![No ORM - Super Fast](https://img.shields.io/badge/No%20ORM-SuperFast-orange)

Expand Down
14 changes: 9 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ version '1.10.0'

sourceCompatibility = 1.8

def poiVersion = '5.2.2'
def comonsLang3Version = '3.12.0'
def comonsCollectionsVersion = '4.4'
def poiVersion = '5.2.5'
def comonsLang3Version = '3.14.0'
def comonsMath3Version = '3.6.1'
def slf4jVersion = '1.7.36'
def comonsCollectionsVersion = '4.4'
def slf4jVersion = '2.0.13'

repositories {
mavenCentral()
Expand All @@ -25,7 +25,11 @@ repositories {
dependencies {

// https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: poiVersion
implementation (group: 'org.apache.poi', name: 'poi-ooxml', version: poiVersion) {
exclude group: 'org.apache.commons', module: 'commons-compress'
}
// TODO remove when poi-ooxml will update its dependency
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.26.2'

// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
implementation group: 'org.apache.commons', name: 'commons-lang3', version: comonsLang3Version
Expand Down
2 changes: 1 addition & 1 deletion docker_data/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mysql:8.0.34-debian
FROM mysql:8.0.37-debian

ENV MYSQL_DATABASE=mempoi \
MYSQL_ROOT_PASSWORD=mempassword
Expand Down

0 comments on commit 8d9cfbb

Please sign in to comment.