Use classpath normalizer on antlib's integration test classpath input

Closes gh-23223
This commit is contained in:
Andy Wilkinson
2020-09-08 11:38:31 +01:00
parent d50c8aa312
commit 3e0096e9b1

View File

@@ -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 {