Upgrade to Gradle 4.10.3 for Spring Boot 2.0.x projects

This commit is contained in:
Stephane Nicoll 2019-06-02 09:21:59 +02:00
parent fdd850ba78
commit a79a9ae101
3 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View File

@ -91,7 +91,7 @@ class GradleProjectGenerationConfigurationTests {
static Stream<Arguments> gradleWrapperParameters() {
return Stream.of(Arguments.arguments("1.5.17.RELEASE", "3.5.1"),
Arguments.arguments("2.0.6.RELEASE", "4.10.2"),
Arguments.arguments("2.0.6.RELEASE", "4.10.3"),
Arguments.arguments("2.1.3.RELEASE", "5.4.1"));
}