diff --git a/build.gradle b/build.gradle index fa1678f..d1d4651 100644 --- a/build.gradle +++ b/build.gradle @@ -1,12 +1,12 @@ plugins { - id 'org.springframework.boot' version '2.7.17' - id 'io.spring.dependency-management' version '1.1.3' + id 'org.springframework.boot' version '2.7.18' + id 'io.spring.dependency-management' version '1.1.4' id 'java' } java { group = 'eu.openaire.urls_worker' - version = '2.1.0-SNAPSHOT' + version = '2.1.6-SNAPSHOT' sourceCompatibility = JavaVersion.VERSION_1_8 } @@ -44,10 +44,10 @@ dependencies { // https://mvnrepository.com/artifact/com.google.code.gson/gson implementation 'com.google.code.gson:gson:2.10.1' - implementation("org.apache.commons:commons-compress:1.24.0") { + implementation("org.apache.commons:commons-compress:1.25.0") { exclude group: 'com.github.luben', module: 'zstd-jni' } - implementation 'com.github.luben:zstd-jni:1.5.5-6' // Even though this is part of the above dependency, the Apache commons rarely updates it, while the zstd team makes improvements very often. + implementation 'com.github.luben:zstd-jni:1.5.5-10' // Even though this is part of the above dependency, the Apache commons rarely updates it, while the zstd team makes improvements very often. // Also, for compressing, we strangely need it to be explicitly declared independently, otherwise it does not work. testImplementation 'org.springframework.security:spring-security-test'