From 0fd7739ec75b05707be66406529e92a5a70ccf92 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Sun, 12 Jun 2016 09:04:30 +0200 Subject: [PATCH] Polish doc See gh-6147 --- .../src/main/asciidoc/using-spring-boot.adoc | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc index 3edf0d6a3f..121ac77a53 100644 --- a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc +++ b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc @@ -817,10 +817,9 @@ Project`) will have the same effect. ==== You can also start your application via the supported build plugins (i.e. Maven and Gradle) as long as forking is enabled since DevTools need an isolated application -classloader to operate properly. You can force the plugin to fork the process as -follows: +classloader to operate properly. Gradle does this by default and you can force the Maven +plugin to fork the process as follows: -.Maven [source,xml,indent=0,subs="verbatim,quotes,attributes"] ---- @@ -836,13 +835,6 @@ follows: ---- -.Gradle -[source,groovy,indent=0,subs="verbatim,attributes"] ----- - bootRun { - addResources = true - } ----- ==== TIP: Automatic restart works very well when used with LiveReload.