From a9681ea032d5c2507534fa5f3aec9eb87ce521d3 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 10 Nov 2014 13:29:57 +0000 Subject: [PATCH] Add note to explain that bootRun ignores output from processResources Closes gh-1739 --- spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc b/spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc index 0a1cea26e9..fcadd0f9ff 100644 --- a/spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc +++ b/spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc @@ -372,6 +372,12 @@ To run a project in place without building a jar first you can use the "`bootRun Running this way makes your static classpath resources (i.e. in `src/main/resources` by default) reloadable in the live application, which can be helpful at development time. +NOTE: Making static classpath resources reloadable means that `bootRun` does not use the +output of the `processResources` task. When invoked using `bootRun` your application will +use the resources in their unprocessed form. + + + [[build-tool-plugins-gradle-global-configuration]] === Spring Boot plugin configuration The gradle plugin automatically extends your build script DSL with a `springBoot` element