diff --git a/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-docs/src/main/asciidoc/howto.adoc index b21fb5543f..1df9d2f5ae 100644 --- a/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -2442,6 +2442,11 @@ https://plugins.gradle.org/plugin/com.gorylenko.gradle-git-properties[`gradle-gi } ---- +TIP: The commit time in `git.properties` is expected to match the format +`yyyy-MM-dd'T'HH:mm:ssZ`. This is the default format for both plugins listed above. Using this format +allows the time to be parsed into a `Date` and its format when serialized to JSON to be controlled by +Jackson's date serialization configuration settings. + [[howto-customize-dependency-versions-with-maven]]