From 66aa24b5f04ac85bcd34791b7cde1ee2e3d418dc Mon Sep 17 00:00:00 2001 From: ketaki-t Date: Thu, 1 Oct 2020 12:59:40 -0700 Subject: [PATCH] Remove documentation for unsupported gradle versions See gh-23562 --- .../asciidoc/appendix-configuration-metadata.adoc | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-configuration-metadata.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-configuration-metadata.adoc index 20f5602c33d..88aeaa52914 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-configuration-metadata.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-configuration-metadata.adoc @@ -737,16 +737,7 @@ If you have defined `@ConfigurationProperties` in your application, make sure to ---- -With Gradle 4.5 and earlier, the dependency should be declared in the `compileOnly` configuration, as shown in the following example: - -[source,groovy,indent=0,subs="verbatim,quotes,attributes"] ----- - dependencies { - compileOnly "org.springframework.boot:spring-boot-configuration-processor" - } ----- - -With Gradle 4.6 and later, the dependency should be declared in the `annotationProcessor` configuration, as shown in the following example: +With Gradle, the dependency should be declared in the `annotationProcessor` configuration, as shown in the following example: [source,groovy,indent=0,subs="verbatim,quotes,attributes"] ----