Skip to content

Commit 42ad6dd

Browse files
committed
Raise the minimum supported version of Gradle to 8.4
Closes gh-42481
1 parent 2f42b9c commit 42ad6dd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

spring-boot-project/spring-boot-docs/src/docs/antora/modules/ROOT/pages/installing.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ More details on getting started with Spring Boot and Maven can be found in the x
4949
[[getting-started.installing.java.gradle]]
5050
=== Gradle Installation
5151

52-
Spring Boot is compatible with Gradle 7.x (7.6.4 or later) or 8.x (8.3 or later).
52+
Spring Boot is compatible with Gradle 7.x (7.6.4 or later) or 8.x (8.4 or later).
5353
If you do not already have Gradle installed, you can follow the instructions at https://gradle.org.
5454

5555
Spring Boot dependencies can be declared by using the `org.springframework.boot` `group`.

spring-boot-project/spring-boot-docs/src/docs/antora/modules/ROOT/pages/system-requirements.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Explicit build support is provided for the following build tools:
1313
| 3.6.3 or later
1414

1515
| Gradle
16-
| Gradle 7.x (7.6.4 or later) or 8.x (8.3 or later)
16+
| Gradle 7.x (7.6.4 or later) or 8.x (8.4 or later)
1717
|===
1818

1919

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/antora/modules/gradle-plugin/pages/introduction.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
The Spring Boot Gradle Plugin provides Spring Boot support in https://gradle.org[Gradle].
55
It allows you to package executable jar or war archives, run Spring Boot applications, and use the dependency management provided by `spring-boot-dependencies`.
6-
Spring Boot's Gradle plugin requires Gradle 7.x (7.6.4 or later) or 8.x (8.3 or later) and can be used with Gradle's {url-gradle-docs}/configuration_cache.html[configuration cache].
6+
Spring Boot's Gradle plugin requires Gradle 7.x (7.6.4 or later) or 8.x (8.4 or later) and can be used with Gradle's {url-gradle-docs}/configuration_cache.html[configuration cache].
77

88
In addition to this user guide, xref:api/java/index.html[API documentation] is also available.

spring-boot-project/spring-boot-tools/spring-boot-gradle-test-support/src/main/java/org/springframework/boot/testsupport/gradle/testkit/GradleVersions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static List<String> allCompatible() {
4242
if (isJavaVersion(JavaVersion.VERSION_21)) {
4343
return Arrays.asList("8.5", GradleVersion.current().getVersion());
4444
}
45-
return Arrays.asList("7.6.4", "8.3", GradleVersion.current().getVersion());
45+
return Arrays.asList("7.6.4", "8.4", GradleVersion.current().getVersion());
4646
}
4747

4848
public static String minimumCompatible() {

0 commit comments

Comments
 (0)