Update dependencies.
This commit is contained in:
parent
13f56d16c0
commit
0626e85894
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue