Skip to content

Commit c5145a2

Browse files
gcoopercosjvalkeal
authored andcommitted
Do not include timestamp for buildInfo.
1 parent 4a56d2a commit c5145a2

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

spring-shell-samples/spring-shell-sample-catalog/spring-shell-sample-catalog.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ dependencies {
1515
}
1616

1717
springBoot {
18-
buildInfo()
18+
buildInfo {
19+
excludes = ['time']
20+
}
1921
}
2022

2123
if (project.hasProperty('springShellSampleE2E') && springShellSampleE2E.toBoolean()) {

spring-shell-samples/spring-shell-sample-commands/spring-shell-sample-commands.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ dependencies {
1515
}
1616

1717
springBoot {
18-
buildInfo()
18+
buildInfo {
19+
excludes = ['time']
20+
}
1921
}
2022

2123
if (project.hasProperty('springShellSampleE2E') && springShellSampleE2E.toBoolean()) {

spring-shell-samples/spring-shell-sample-e2e/spring-shell-sample-e2e.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ dependencies {
1515
}
1616

1717
springBoot {
18-
buildInfo()
18+
buildInfo {
19+
excludes = ['time']
20+
}
1921
}
2022

2123
if (project.hasProperty('springShellSampleE2E') && springShellSampleE2E.toBoolean()) {

0 commit comments

Comments
 (0)