Skip to content

Commit 2582227

Browse files
committed
Merge branch '2.5.x'
Closes gh-28752
2 parents 70e42e0 + 96d98a0 commit 2582227

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ tasks.withType(org.asciidoctor.gradle.jvm.AbstractAsciidoctorTask) {
214214
attributes "spring-integration-docs": integrationDocs
215215
}
216216
dependsOn test
217-
inputs.dir("${buildDir}/generated-snippets")
217+
inputs.dir("${buildDir}/generated-snippets").withPathSensitivity(PathSensitivity.RELATIVE)
218218
}
219219

220220
asciidoctor {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ processResources {
4141
task integrationTest {
4242
dependsOn copyIntegrationTestSources, jar
4343
def resultsDir = file("${buildDir}/test-results/integrationTest")
44-
inputs.dir file("src/it")
44+
inputs.dir(file("src/it")).withPathSensitivity(PathSensitivity.RELATIVE)
4545
inputs.files(sourceSets.main.runtimeClasspath).withNormalizer(ClasspathNormalizer)
4646
outputs.dirs resultsDir
4747
doLast {

0 commit comments

Comments
 (0)