From 95b504ccad4055f200e4b08ab32dc8a4dd8cf6b0 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Fri, 7 Aug 2020 09:44:04 +0100 Subject: [PATCH] Make processResources out-of-date on version change Closes gh-22780 --- .../spring-boot-tools/spring-boot-antlib/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-boot-project/spring-boot-tools/spring-boot-antlib/build.gradle b/spring-boot-project/spring-boot-tools/spring-boot-antlib/build.gradle index b57e043d49..a0d89572ab 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-antlib/build.gradle +++ b/spring-boot-project/spring-boot-tools/spring-boot-antlib/build.gradle @@ -35,6 +35,7 @@ processResources { eachFile { filter { it.replace('${spring-boot.version}', project.version) } } + inputs.property "version", project.version } task integrationTest {