Raise the minimum supported version of Gradle to 8.4
Closes gh-42481
This commit is contained in:
parent
2f42b9cb29
commit
42ad6ddf0a
|
@ -49,7 +49,7 @@ More details on getting started with Spring Boot and Maven can be found in the x
|
||||||
[[getting-started.installing.java.gradle]]
|
[[getting-started.installing.java.gradle]]
|
||||||
=== Gradle Installation
|
=== Gradle Installation
|
||||||
|
|
||||||
Spring Boot is compatible with Gradle 7.x (7.6.4 or later) or 8.x (8.3 or later).
|
Spring Boot is compatible with Gradle 7.x (7.6.4 or later) or 8.x (8.4 or later).
|
||||||
If you do not already have Gradle installed, you can follow the instructions at https://gradle.org.
|
If you do not already have Gradle installed, you can follow the instructions at https://gradle.org.
|
||||||
|
|
||||||
Spring Boot dependencies can be declared by using the `org.springframework.boot` `group`.
|
Spring Boot dependencies can be declared by using the `org.springframework.boot` `group`.
|
||||||
|
|
|
@ -13,7 +13,7 @@ Explicit build support is provided for the following build tools:
|
||||||
| 3.6.3 or later
|
| 3.6.3 or later
|
||||||
|
|
||||||
| Gradle
|
| Gradle
|
||||||
| Gradle 7.x (7.6.4 or later) or 8.x (8.3 or later)
|
| Gradle 7.x (7.6.4 or later) or 8.x (8.4 or later)
|
||||||
|===
|
|===
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,6 @@
|
||||||
|
|
||||||
The Spring Boot Gradle Plugin provides Spring Boot support in https://gradle.org[Gradle].
|
The Spring Boot Gradle Plugin provides Spring Boot support in https://gradle.org[Gradle].
|
||||||
It allows you to package executable jar or war archives, run Spring Boot applications, and use the dependency management provided by `spring-boot-dependencies`.
|
It allows you to package executable jar or war archives, run Spring Boot applications, and use the dependency management provided by `spring-boot-dependencies`.
|
||||||
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].
|
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].
|
||||||
|
|
||||||
In addition to this user guide, xref:api/java/index.html[API documentation] is also available.
|
In addition to this user guide, xref:api/java/index.html[API documentation] is also available.
|
||||||
|
|
|
@ -42,7 +42,7 @@ public final class GradleVersions {
|
||||||
if (isJavaVersion(JavaVersion.VERSION_21)) {
|
if (isJavaVersion(JavaVersion.VERSION_21)) {
|
||||||
return Arrays.asList("8.5", GradleVersion.current().getVersion());
|
return Arrays.asList("8.5", GradleVersion.current().getVersion());
|
||||||
}
|
}
|
||||||
return Arrays.asList("7.6.4", "8.3", GradleVersion.current().getVersion());
|
return Arrays.asList("7.6.4", "8.4", GradleVersion.current().getVersion());
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String minimumCompatible() {
|
public static String minimumCompatible() {
|
||||||
|
|
Loading…
Reference in New Issue