Commit 3e0096e9 authored by Andy Wilkinson's avatar Andy Wilkinson

Use classpath normalizer on antlib's integration test classpath input

Closes gh-23223
parent d50c8aa3
...@@ -42,7 +42,7 @@ task integrationTest { ...@@ -42,7 +42,7 @@ task integrationTest {
dependsOn copyIntegrationTestSources, jar dependsOn copyIntegrationTestSources, jar
def resultsDir = file("${buildDir}/test-results/integrationTest") def resultsDir = file("${buildDir}/test-results/integrationTest")
inputs.dir file("src/it") inputs.dir file("src/it")
inputs.files sourceSets.main.runtimeClasspath inputs.files(sourceSets.main.runtimeClasspath).withNormalizer(ClasspathNormalizer)
outputs.dirs resultsDir outputs.dirs resultsDir
doLast { doLast {
ant.with { ant.with {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment