- Set the upcoming version.

- Update dependencies.
This commit is contained in:
Lampros Smyrnaios 2023-11-27 13:02:33 +02:00
parent 9073f56227
commit 5a9e7228ae
1 changed files with 5 additions and 5 deletions

View File

@ -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'