From d4d1ca007ed7859652ccb0c2ea7ed7abbb3d7f5f Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 10 Aug 2021 10:44:32 +0100 Subject: [PATCH] Mention productionRuntimeClasspath in the docs Closes gh-27558 --- .../src/docs/asciidoc/reacting.adoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/reacting.adoc b/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/reacting.adoc index 7fc27f43fbe8..4644a0566639 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/reacting.adoc +++ b/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/reacting.adoc @@ -17,8 +17,9 @@ When Gradle's {java-plugin}[`java` plugin] is applied to a project, the Spring B 5. Creates a {boot-run-javadoc}[`BootRun`] task named `bootRun` that can be used to run your application. 6. Creates a configuration named `bootArchives` that contains the artifact produced by the `bootJar` task. 7. Creates a configuration named `developmentOnly` for dependencies that are only required at development time, such as Spring Boot's Devtools, and should not be packaged in executable jars and wars. -8. Configures any `JavaCompile` tasks with no configured encoding to use `UTF-8`. -9. Configures any `JavaCompile` tasks to use the `-parameters` compiler argument. +8. Creates a configuration named `productionRuntimeClasspath`. It is equivalent to `runtimeClasspath` minus any dependencies that only appear in the `developmentOnly` configuration. +9. Configures any `JavaCompile` tasks with no configured encoding to use `UTF-8`. +10. Configures any `JavaCompile` tasks to use the `-parameters` compiler argument.