From b882c29bdf607d5d4db910f7fd0161143a1329c7 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 24 Apr 2025 13:23:29 +0100 Subject: [PATCH 1/2] Release v3.4.5 --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 325508af105d..6bde3dde9ea7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=3.4.5-SNAPSHOT +version=3.4.5 latestVersion=false spring.build-type=oss From 6313622084e658062012254da7d260c80f28d975 Mon Sep 17 00:00:00 2001 From: johnnydacosta <108694035+johnnydacosta@users.noreply.github.com> Date: Fri, 16 May 2025 08:41:46 +0200 Subject: [PATCH 2/2] docs: add full plugin configuration for generating git.properties with Maven This ensures the git.properties file is properly generated during the initialize phase. --- .../antora/modules/how-to/pages/build.adoc | 28 +++++++++++++++---- 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/how-to/pages/build.adoc b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/how-to/pages/build.adoc index 5372c5bfb00b..a01bb9bc34f4 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/how-to/pages/build.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/how-to/pages/build.adoc @@ -61,12 +61,28 @@ To use it, add the following declaration for the https://github.com/git-commit-i [source,xml] ---- - - - io.github.git-commit-id - git-commit-id-maven-plugin - - + + + io.github.git-commit-id + git-commit-id-maven-plugin + + + get-the-git-infos + + revision + + initialize + + + + true + + ${project.build.outputDirectory}/git.properties + + full + + + ----