File tree 4 files changed +5
-5
lines changed
spring-boot-actuator-autoconfigure
spring-boot-gradle-plugin
spring-boot-system-tests/spring-boot-deployment-tests
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ tasks.withType(org.asciidoctor.gradle.jvm.AbstractAsciidoctorTask) {
214
214
attributes " spring-integration-docs" : integrationDocs
215
215
}
216
216
dependsOn test
217
- inputs. dir(" ${ buildDir} /generated-snippets" ). withPathSensitivity(PathSensitivity . RELATIVE )
217
+ inputs. dir(" ${ buildDir} /generated-snippets" ). withPathSensitivity(PathSensitivity . RELATIVE ). withPropertyName( " generatedSnippets " )
218
218
}
219
219
220
220
asciidoctor {
Original file line number Diff line number Diff line change @@ -41,8 +41,8 @@ processResources {
41
41
task integrationTest {
42
42
dependsOn copyIntegrationTestSources, jar
43
43
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 " )
46
46
outputs. dirs resultsDir
47
47
doLast {
48
48
ant. with {
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ task dependencyVersions(type: org.springframework.boot.build.constraints.Extract
64
64
65
65
tasks. withType(org.asciidoctor.gradle.jvm.AbstractAsciidoctorTask ) {
66
66
dependsOn dependencyVersions
67
- inputs. dir(' src/docs/gradle' ). withPathSensitivity(PathSensitivity . RELATIVE )
67
+ inputs. dir(' src/docs/gradle' ). withPathSensitivity(PathSensitivity . RELATIVE ). withPropertyName( ' buildScripts ' )
68
68
doFirst {
69
69
attributes " dependency-management-plugin-version" : dependencyVersions. versionConstraints[" io.spring.gradle:dependency-management-plugin" ]
70
70
}
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ dependencies {
37
37
}
38
38
39
39
systemTest {
40
- inputs. files(war). withNormalizer(ClasspathNormalizer )
40
+ inputs. files(war). withNormalizer(ClasspathNormalizer ). withPropertyName( " war " )
41
41
}
42
42
43
43
war {
You can’t perform that action at this time.
0 commit comments