From 0626e8589451f1c5d626f1d92553579dcc2c000b Mon Sep 17 00:00:00 2001 From: LSmyrnaios Date: Wed, 15 Feb 2023 16:18:33 +0200 Subject: [PATCH] Update dependencies. --- build.gradle | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- installAndRun.sh | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 6e57ef8..0c1a315 100644 --- a/build.gradle +++ b/build.gradle @@ -40,7 +40,7 @@ dependencies { } implementation 'org.apache.commons:commons-compress:1.22' - implementation 'com.github.luben:zstd-jni:1.5.2-5' + implementation 'com.github.luben:zstd-jni:1.5.4-1' testImplementation 'org.springframework.security:spring-security-test' testImplementation "org.springframework.boot:spring-boot-starter-test" diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index f398c33..42defcc 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-7.6-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/installAndRun.sh b/installAndRun.sh index 7c524a0..b1269cd 100755 --- a/installAndRun.sh +++ b/installAndRun.sh @@ -22,7 +22,7 @@ elif [[ $# -gt 2 ]]; then echo -e "Wrong number of arguments given: ${#} (more than 2)\nPlease execute it like: script.sh "; exit 2 fi -gradleVersion="7.6" +gradleVersion="8.0" if [[ justRun -eq 0 ]]; then @@ -58,6 +58,7 @@ if [[ justRun -eq 0 ]]; then cd ../ fi + # Install the specified Gradle-build-tool version, if it does not exist. if [[ ! -d /opt/gradle/gradle-${gradleVersion} ]]; then wget https://services.gradle.org/distributions/gradle-${gradleVersion}-bin.zip echo -e "\nAsking for sudo, in order to install 'gradle'..\n"