From 020a47ba3e6542ff0df74910780a076b51254ca5 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 8 Jun 2020 14:29:07 +0100 Subject: [PATCH] Document support for Gradle 5 Closes gh-15358 --- .../src/main/asciidoc/build-tool-plugins.adoc | 2 +- .../spring-boot-docs/src/main/asciidoc/getting-started.adoc | 4 ++-- .../spring-boot-gradle-plugin/src/main/asciidoc/index.adoc | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc index 2c242128e3..86f7c61640 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc @@ -162,7 +162,7 @@ Advanced configuration options and examples are available in the {spring-boot-ma [[build-tool-plugins-gradle-plugin]] == Spring Boot Gradle Plugin The Spring Boot Gradle Plugin provides Spring Boot support in Gradle, letting you package executable jar or war archives, run Spring Boot applications, and use the dependency management provided by `spring-boot-dependencies`. -It requires Gradle 4.4 or later. +It requires Gradle 4.x (4.4 or later) or 5.x. Please refer to the plugin's documentation to learn more: * Reference ({spring-boot-gradle-plugin-docs}[HTML] and {spring-boot-gradle-plugin-pdfdocs}[PDF]) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/getting-started.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/getting-started.adoc index a2ffe3b9b7..ace21a3a55 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/getting-started.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/getting-started.adoc @@ -43,7 +43,7 @@ Explicit build support is provided for the following build tools: | 3.3+ | Gradle -| 4.4+ +| 4.x (4.4 and later) and 5.x |=== @@ -197,7 +197,7 @@ In those cases, see <> for an alternative sol [[getting-started-gradle-installation]] ==== Gradle Installation -Spring Boot is compatible with Gradle 4.4 and later. +Spring Boot is compatible with Gradle 4.x (4.4 and later) and 5.x. 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`. diff --git a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/asciidoc/index.adoc b/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/asciidoc/index.adoc index c802b873d6..243785d817 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/asciidoc/index.adoc +++ b/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/asciidoc/index.adoc @@ -36,8 +36,8 @@ Andy Wilkinson 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`. -Spring Boot's Gradle plugin requires Gradle 4.4 or later. -If you choose to use the newer Kotlin DSL, it requires Gradle 4.10 or later. +Spring Boot's Gradle plugin requires Gradle 4.x (4.4 or later) or 5.x. +If you choose to use the newer Kotlin DSL, it requires Gradle 4.10 or 5.x. In addition to this user guide, {api-documentation}[API documentation] is also available.