Update dependencies.

This commit is contained in:
Lampros Smyrnaios 2023-02-15 16:18:33 +02:00
parent 13f56d16c0
commit 0626e85894
3 changed files with 4 additions and 3 deletions

View File

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

View File

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

View File

@ -22,7 +22,7 @@ elif [[ $# -gt 2 ]]; then
echo -e "Wrong number of arguments given: ${#} (more than 2)\nPlease execute it like: script.sh <justRun: 0 | 1> <avoidReInstallingPublicationsRetriever: 0 | 1>"; 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"