Skip to content

Commit 3e0096e

Browse files
committed
Use classpath normalizer on antlib's integration test classpath input
Closes gh-23223
1 parent d50c8aa commit 3e0096e

File tree

1 file changed

+1
-1
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-antlib

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-tools/spring-boot-antlib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ task integrationTest {
4242
dependsOn copyIntegrationTestSources, jar
4343
def resultsDir = file("${buildDir}/test-results/integrationTest")
4444
inputs.dir file("src/it")
45-
inputs.files sourceSets.main.runtimeClasspath
45+
inputs.files(sourceSets.main.runtimeClasspath).withNormalizer(ClasspathNormalizer)
4646
outputs.dirs resultsDir
4747
doLast {
4848
ant.with {

0 commit comments

Comments
 (0)