From 3e0096e9b13a8a4de63e9cf084f501bd3d36c760 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 8 Sep 2020 11:38:31 +0100 Subject: [PATCH] Use classpath normalizer on antlib's integration test classpath input Closes gh-23223 --- .../spring-boot-tools/spring-boot-antlib/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 a0d89572ab..5d0e114fc8 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 @@ -42,7 +42,7 @@ task integrationTest { dependsOn copyIntegrationTestSources, jar def resultsDir = file("${buildDir}/test-results/integrationTest") inputs.dir file("src/it") - inputs.files sourceSets.main.runtimeClasspath + inputs.files(sourceSets.main.runtimeClasspath).withNormalizer(ClasspathNormalizer) outputs.dirs resultsDir doLast { ant.with {