From 8d83092210fc3ba7a70435b5359fc372c7f9993b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Sep 2026 08:53:37 +0000 Subject: [PATCH] chore(catalog): record boot-3.5.12+rebuild.1 --- catalog.json | 6 +++--- markdown/boot/3.5.12/build-tool-plugin/antlib.md | 2 +- markdown/boot/3.5.12/cli/using-the-cli.md | 6 +++--- markdown/boot/3.5.12/how-to/build.md | 4 ++-- .../developing-your-first-application.md | 8 ++++---- .../native-image/testing-native-applications.md | 2 +- markdown/boot/3.5.12/installing.md | 8 ++++---- .../boot/3.5.12/reference/using/build-systems.md | 2 +- .../3.5.12/tutorial/first-application/index.md | 14 +++++++------- 9 files changed, 26 insertions(+), 26 deletions(-) diff --git a/catalog.json b/catalog.json index e5b2145a..4e7c93d2 100644 --- a/catalog.json +++ b/catalog.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", "version": "1", - "generated_at": "2026-09-16T04:25:04.881Z", + "generated_at": "2026-09-16T08:53:37.692Z", "projects": { "boot": { "3.3.0": { @@ -165,8 +165,8 @@ "released_at": "2026-09-12T12:34:44Z" }, "3.5.12": { - "tag": "boot-3.5.12", - "released_at": "2026-09-12T12:35:27Z" + "tag": "boot-3.5.12+rebuild.1", + "released_at": "2026-09-16T08:53:36Z" }, "3.5.13": { "tag": "boot-3.5.13", diff --git a/markdown/boot/3.5.12/build-tool-plugin/antlib.md b/markdown/boot/3.5.12/build-tool-plugin/antlib.md index 1e41a6cb..5d55778d 100644 --- a/markdown/boot/3.5.12/build-tool-plugin/antlib.md +++ b/markdown/boot/3.5.12/build-tool-plugin/antlib.md @@ -22,7 +22,7 @@ To use the module, you need to declare an additional `spring-boot` namespace in You need to remember to start Ant using the `-lib` option, as shown in the following example: ```shell -$ ant -lib +$ ant -lib ``` > [!TIP] diff --git a/markdown/boot/3.5.12/cli/using-the-cli.md b/markdown/boot/3.5.12/cli/using-the-cli.md index 17bb59a3..7a647461 100644 --- a/markdown/boot/3.5.12/cli/using-the-cli.md +++ b/markdown/boot/3.5.12/cli/using-the-cli.md @@ -92,7 +92,7 @@ The `version` command provides a quick way to check which version of Spring Boot ```shell $ spring version -Spring CLI v{version-spring-boot} +Spring CLI v3.5.12 ``` @@ -153,7 +153,7 @@ If you do not use either of these shells (perhaps you are a Windows user), you c ```shell $ spring shell -*Spring Boot* (v{version-spring-boot}) +*Spring Boot* (v3.5.12) Hit TAB to complete. Type \'help' and hit RETURN for help, and \'exit' to quit. ``` @@ -161,7 +161,7 @@ From inside the embedded shell, you can run other commands directly: ```shell $ version -Spring CLI v{version-spring-boot} +Spring CLI v3.5.12 ``` The embedded shell supports ANSI color output as well as `tab` completion. diff --git a/markdown/boot/3.5.12/how-to/build.md b/markdown/boot/3.5.12/how-to/build.md index 6039fb4a..1fac884b 100644 --- a/markdown/boot/3.5.12/how-to/build.md +++ b/markdown/boot/3.5.12/how-to/build.md @@ -26,7 +26,7 @@ To generate build information with Maven, add an execution for the `build-info` org.springframework.boot spring-boot-maven-plugin - {version-spring-boot} + 3.5.12 @@ -158,7 +158,7 @@ However, you must additionally add an `` section, as follows: org.springframework.boot spring-boot-maven-plugin - {version-spring-boot} + 3.5.12 diff --git a/markdown/boot/3.5.12/how-to/native-image/developing-your-first-application.md b/markdown/boot/3.5.12/how-to/native-image/developing-your-first-application.md index c5240b6e..b3570597 100644 --- a/markdown/boot/3.5.12/how-to/native-image/developing-your-first-application.md +++ b/markdown/boot/3.5.12/how-to/native-image/developing-your-first-application.md @@ -90,7 +90,7 @@ You should have a `` section that looks like this: org.springframework.boot spring-boot-starter-parent - {version-spring-boot} + 3.5.12 ``` @@ -190,8 +190,8 @@ To install the native image compiler on macOS or Linux, we recommend using SDKMA Get SDKMAN! from [sdkman.io](https://sdkman.io) and install the Liberica GraalVM distribution by using the following commands: ```shell -$ sdk install java {version-graal}.r17-nik -$ sdk use java {version-graal}.r17-nik +$ sdk install java 22.3.r17-nik +$ sdk use java 22.3.r17-nik ``` Verify that the correct version has been configured by checking the output of `java -version`: @@ -264,7 +264,7 @@ You should see output similar to the following: \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v{version-spring-boot}) + :: Spring Boot :: (v3.5.12) ....... . . . ....... . . . (log output here) ....... . . . diff --git a/markdown/boot/3.5.12/how-to/native-image/testing-native-applications.md b/markdown/boot/3.5.12/how-to/native-image/testing-native-applications.md index 20901196..e84d438a 100644 --- a/markdown/boot/3.5.12/how-to/native-image/testing-native-applications.md +++ b/markdown/boot/3.5.12/how-to/native-image/testing-native-applications.md @@ -82,7 +82,7 @@ You should have a `` section that looks like this: org.springframework.boot spring-boot-starter-parent - {version-spring-boot} + 3.5.12 ``` diff --git a/markdown/boot/3.5.12/installing.md b/markdown/boot/3.5.12/installing.md index 6ce4c1e1..0c1ba3b3 100644 --- a/markdown/boot/3.5.12/installing.md +++ b/markdown/boot/3.5.12/installing.md @@ -98,16 +98,16 @@ Get SDKMAN! from [sdkman.io](https://sdkman.io) and install Spring Boot by using ```shell $ sdk install springboot $ spring --version -Spring CLI v{version-spring-boot} +Spring CLI v3.5.12 ``` If you develop features for the CLI and want access to the version you built, use the following commands: ```shell -$ sdk install springboot dev /path/to/spring-boot/spring-boot-cli/target/spring-boot-cli-{version-spring-boot}-bin/spring-{version-spring-boot}/ +$ sdk install springboot dev /path/to/spring-boot/spring-boot-cli/target/spring-boot-cli-3.5.12-bin/spring-3.5.12/ $ sdk default springboot dev $ spring --version -Spring CLI v{version-spring-boot} +Spring CLI v3.5.12 ``` The preceding instructions install a local instance of `spring` called the `dev` instance. @@ -122,7 +122,7 @@ $ sdk ls springboot Available Springboot Versions ================================================================================ > + dev -* {version-spring-boot} +* 3.5.12 ================================================================================ + - local version diff --git a/markdown/boot/3.5.12/reference/using/build-systems.md b/markdown/boot/3.5.12/reference/using/build-systems.md index b25a0650..a1c88624 100644 --- a/markdown/boot/3.5.12/reference/using/build-systems.md +++ b/markdown/boot/3.5.12/reference/using/build-systems.md @@ -78,7 +78,7 @@ A typical `build.xml` looks like the following example: xmlns:spring-boot="antlib:org.springframework.boot.ant" name="myapp" default="build"> - + diff --git a/markdown/boot/3.5.12/tutorial/first-application/index.md b/markdown/boot/3.5.12/tutorial/first-application/index.md index 15f29896..3d1b0529 100644 --- a/markdown/boot/3.5.12/tutorial/first-application/index.md +++ b/markdown/boot/3.5.12/tutorial/first-application/index.md @@ -88,7 +88,7 @@ Open your favorite text editor and add the following: org.springframework.boot spring-boot-starter-parent - {version-spring-boot} + 3.5.12 com.example myproject @@ -118,8 +118,8 @@ Open your favorite text editor and add the following: ```gradle plugins { id 'java' - id 'org.springframework.boot' version '{version-spring-boot}' - id 'io.spring.dependency-management' version '{version-dependency-management-plugin}' + id 'org.springframework.boot' version '3.5.12' + id 'io.spring.dependency-management' version '1.1.7' } group = 'com.example' @@ -346,7 +346,7 @@ $ mvn spring-boot:run \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v{version-spring-boot}) + :: Spring Boot :: (v3.5.12) ....... . . . ....... . . . (log output here) ....... . . . @@ -379,7 +379,7 @@ $ gradle bootRun \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v{version-spring-boot}) + :: Spring Boot :: (v3.5.12) ....... . . . ....... . . . (log output here) ....... . . . @@ -450,7 +450,7 @@ $ mvn package [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ myproject --- [INFO] Building jar: /Users/developer/example/spring-boot-example/target/myproject-0.0.1-SNAPSHOT.jar [INFO] -[INFO] --- spring-boot-maven-plugin:{version-spring-boot}:repackage (default) @ myproject --- +[INFO] --- spring-boot-maven-plugin:3.5.12:repackage (default) @ myproject --- [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ @@ -478,7 +478,7 @@ $ java -jar target/myproject-0.0.1-SNAPSHOT.jar \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v{version-spring-boot}) + :: Spring Boot :: (v3.5.12) ....... . . . ....... . . . (log output here) ....... . . .