From 0b3ee3e16eb2d24587aa825c2104f6e9e7765a74 Mon Sep 17 00:00:00 2001 From: LSmyrnaios Date: Thu, 24 Oct 2024 20:22:40 +0300 Subject: [PATCH] - Set next version. - Update dependencies. --- build.gradle | 10 +++++----- gradle/wrapper/gradle-wrapper.properties | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 691d22e..b7b8617 100644 --- a/build.gradle +++ b/build.gradle @@ -1,12 +1,12 @@ plugins { id 'org.springframework.boot' version '2.7.18' - id 'io.spring.dependency-management' version '1.1.5' + id 'io.spring.dependency-management' version '1.1.6' id 'java' } java { group = 'eu.openaire.urls_worker' - version = '2.1.12' + version = '2.1.13-SNAPSHOT' sourceCompatibility = JavaVersion.VERSION_1_8 } @@ -45,15 +45,15 @@ dependencies { exclude group: 'org.apache.commons', module: 'commons-compress' } - implementation group: 'com.google.guava', name: 'guava', version: '33.2.1-jre' + implementation group: 'com.google.guava', name: 'guava', version: '33.3.1-jre' // https://mvnrepository.com/artifact/com.google.code.gson/gson implementation 'com.google.code.gson:gson:2.11.0' - implementation("org.apache.commons:commons-compress:1.26.2") { + implementation("org.apache.commons:commons-compress:1.27.1") { exclude group: 'com.github.luben', module: 'zstd-jni' } - implementation 'com.github.luben:zstd-jni:1.5.6-3' // 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.6-6' // 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' diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a441313..df97d72 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME