Upgrade to Gradle 8.2.1

Closes gh-1449
This commit is contained in:
Stephane Nicoll 2023-07-25 12:04:53 +02:00
parent 0be9637bc4
commit d15bcab31d
5 changed files with 8 additions and 4 deletions

View File

@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View File

@ -130,10 +130,13 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi
# Increase the maximum file descriptors if we can.

View File

@ -87,7 +87,7 @@ class GradleKtsProjectGenerationConfigurationTests {
static Stream<Arguments> gradleWrapperParameters() {
return Stream.of(Arguments.arguments("2.2.3.RELEASE", "6.9.3"), Arguments.arguments("2.5.0", "7.6.2"),
Arguments.arguments("2.7.10", "8.1.1"));
Arguments.arguments("2.7.10", "8.2.1"));
}
@ParameterizedTest(name = "Spring Boot {0}")

View File

@ -86,7 +86,7 @@ class GradleProjectGenerationConfigurationTests {
static Stream<Arguments> gradleWrapperParameters() {
return Stream.of(Arguments.arguments("2.2.3.RELEASE", "6.9.3"), Arguments.arguments("2.5.0", "7.6.2"),
Arguments.arguments("2.7.10", "8.1.1"));
Arguments.arguments("2.7.10", "8.2.1"));
}
@ParameterizedTest(name = "Spring Boot {0}")