Merge branch '2.5.x'

Closes gh-28752
This commit is contained in:
Andy Wilkinson 2021-11-19 14:52:03 +00:00
commit 258222781a
2 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ tasks.withType(org.asciidoctor.gradle.jvm.AbstractAsciidoctorTask) {
attributes "spring-integration-docs": integrationDocs
}
dependsOn test
inputs.dir("${buildDir}/generated-snippets")
inputs.dir("${buildDir}/generated-snippets").withPathSensitivity(PathSensitivity.RELATIVE)
}
asciidoctor {

View File

@ -41,7 +41,7 @@ processResources {
task integrationTest {
dependsOn copyIntegrationTestSources, jar
def resultsDir = file("${buildDir}/test-results/integrationTest")
inputs.dir file("src/it")
inputs.dir(file("src/it")).withPathSensitivity(PathSensitivity.RELATIVE)
inputs.files(sourceSets.main.runtimeClasspath).withNormalizer(ClasspathNormalizer)
outputs.dirs resultsDir
doLast {