Skip to content

Commit

Permalink
- deps update
Browse files Browse the repository at this point in the history
- mysql test container update
  • Loading branch information
firegloves committed Jul 1, 2024
1 parent d0b6151 commit 2766169
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
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
20 changes: 12 additions & 8 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 All @@ -46,16 +50,16 @@ dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.13.2'

// https://mvnrepository.com/artifact/org.mariadb.jdbc/mariadb-java-client
testImplementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '3.0.6'
testImplementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '3.4.0'

// https://mvnrepository.com/artifact/org.mockito/mockito-core
testImplementation group: 'org.mockito', name: 'mockito-core', version: '4.6.1'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.12.0'

// https://mvnrepository.com/artifact/org.hamcrest/hamcrest-all
testImplementation group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'

// https://mvnrepository.com/artifact/mysql/mysql-connector-java
testImplementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.32'
testImplementation group: 'mysql', name: 'mysql-connector-java', version: '9.0.0'
}

java {
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 2766169

Please sign in to comment.