From 23ecb860899127d91806601a20d2f732fa840f16 Mon Sep 17 00:00:00 2001 From: jongmin92 Date: Thu, 28 Jan 2021 02:30:03 +0900 Subject: [PATCH] Document missing code to run Gradle bootRun task See gh-25012 --- .../spring-boot-gradle-plugin/src/docs/asciidoc/running.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/running.adoc b/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/running.adoc index 849feb87cf1b..b2560f61206b 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/running.adoc +++ b/spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/asciidoc/running.adoc @@ -112,7 +112,7 @@ Gradle allows project properties to be set in a variety of ways, including on th [source,bash,indent=0,subs="verbatim,attributes"] ---- -$ ./gradlew -Pexample=custom +$ ./gradlew bootRun -Pexample=custom ---- The preceding example sets the value of the `example` project property to `custom`.