Skip to content

Commit 0074d62

Browse files
committed
Merge branch '2.5.x'
Closes gh-28754
2 parents 2582227 + 015cf92 commit 0074d62

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Diff for: 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").withPathSensitivity(PathSensitivity.RELATIVE)
217+
inputs.dir("${buildDir}/generated-snippets").withPathSensitivity(PathSensitivity.RELATIVE).withPropertyName("generatedSnippets")
218218
}
219219

220220
asciidoctor {

Diff for: spring-boot-project/spring-boot-tools/spring-boot-antlib/build.gradle

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

Diff for: spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ task dependencyVersions(type: org.springframework.boot.build.constraints.Extract
6464

6565
tasks.withType(org.asciidoctor.gradle.jvm.AbstractAsciidoctorTask) {
6666
dependsOn dependencyVersions
67-
inputs.dir('src/docs/gradle').withPathSensitivity(PathSensitivity.RELATIVE)
67+
inputs.dir('src/docs/gradle').withPathSensitivity(PathSensitivity.RELATIVE).withPropertyName('buildScripts')
6868
doFirst {
6969
attributes "dependency-management-plugin-version": dependencyVersions.versionConstraints["io.spring.gradle:dependency-management-plugin"]
7070
}

Diff for: spring-boot-system-tests/spring-boot-deployment-tests/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ dependencies {
3737
}
3838

3939
systemTest {
40-
inputs.files(war).withNormalizer(ClasspathNormalizer)
40+
inputs.files(war).withNormalizer(ClasspathNormalizer).withPropertyName("war")
4141
}
4242

4343
war {

0 commit comments

Comments
 (0)