From e0ff73c5a9f49d2ed309671da9341b5950bf3528 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:43:04 +0000 Subject: [PATCH] chore(catalog): record boot-3.3.1+rebuild.1 --- catalog.json | 6 +++--- markdown/boot/3.3.1/build-tool-plugin/antlib.md | 2 +- markdown/boot/3.3.1/cli/using-the-cli.md | 6 +++--- markdown/boot/3.3.1/how-to/build.md | 4 ++-- .../developing-your-first-application.md | 8 ++++---- .../native-image/testing-native-applications.md | 2 +- markdown/boot/3.3.1/installing.md | 8 ++++---- markdown/boot/3.3.1/reference/using/build-systems.md | 2 +- .../boot/3.3.1/tutorial/first-application/index.md | 12 ++++++------ 9 files changed, 25 insertions(+), 25 deletions(-) diff --git a/catalog.json b/catalog.json index e5b2145a..0f4368d5 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:43:03.841Z", "projects": { "boot": { "3.3.0": { @@ -9,8 +9,8 @@ "released_at": "2026-09-12T12:37:44Z" }, "3.3.1": { - "tag": "boot-3.3.1", - "released_at": "2026-09-12T12:37:47Z" + "tag": "boot-3.3.1+rebuild.1", + "released_at": "2026-09-16T08:43:03Z" }, "3.3.2": { "tag": "boot-3.3.2", diff --git a/markdown/boot/3.3.1/build-tool-plugin/antlib.md b/markdown/boot/3.3.1/build-tool-plugin/antlib.md index 1e41a6cb..848af3fb 100644 --- a/markdown/boot/3.3.1/build-tool-plugin/antlib.md +++ b/markdown/boot/3.3.1/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.3.1/cli/using-the-cli.md b/markdown/boot/3.3.1/cli/using-the-cli.md index 17bb59a3..bbceed4a 100644 --- a/markdown/boot/3.3.1/cli/using-the-cli.md +++ b/markdown/boot/3.3.1/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.3.1 ``` @@ -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.3.1) 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.3.1 ``` The embedded shell supports ANSI color output as well as `tab` completion. diff --git a/markdown/boot/3.3.1/how-to/build.md b/markdown/boot/3.3.1/how-to/build.md index 7bb7d084..f7139c7c 100644 --- a/markdown/boot/3.3.1/how-to/build.md +++ b/markdown/boot/3.3.1/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.3.1 @@ -130,7 +130,7 @@ However, you must additionally add an `` section, as follows: org.springframework.boot spring-boot-maven-plugin - {version-spring-boot} + 3.3.1 diff --git a/markdown/boot/3.3.1/how-to/native-image/developing-your-first-application.md b/markdown/boot/3.3.1/how-to/native-image/developing-your-first-application.md index 67aabbfd..621d2911 100644 --- a/markdown/boot/3.3.1/how-to/native-image/developing-your-first-application.md +++ b/markdown/boot/3.3.1/how-to/native-image/developing-your-first-application.md @@ -89,7 +89,7 @@ You should have a `` section that looks like this: org.springframework.boot spring-boot-starter-parent - {version-spring-boot} + 3.3.1 ``` @@ -189,8 +189,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`: @@ -263,7 +263,7 @@ You should see output similar to the following: \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v{version-spring-boot}) + :: Spring Boot :: (v3.3.1) ....... . . . ....... . . . (log output here) ....... . . . diff --git a/markdown/boot/3.3.1/how-to/native-image/testing-native-applications.md b/markdown/boot/3.3.1/how-to/native-image/testing-native-applications.md index b6e9e11c..93ed2bf4 100644 --- a/markdown/boot/3.3.1/how-to/native-image/testing-native-applications.md +++ b/markdown/boot/3.3.1/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.3.1 ``` diff --git a/markdown/boot/3.3.1/installing.md b/markdown/boot/3.3.1/installing.md index 318e0d4f..2d1cd5c8 100644 --- a/markdown/boot/3.3.1/installing.md +++ b/markdown/boot/3.3.1/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.3.1 ``` 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.3.1-bin/spring-3.3.1/ $ sdk default springboot dev $ spring --version -Spring CLI v{version-spring-boot} +Spring CLI v3.3.1 ``` 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.3.1 ================================================================================ + - local version diff --git a/markdown/boot/3.3.1/reference/using/build-systems.md b/markdown/boot/3.3.1/reference/using/build-systems.md index c7116bc7..d3705c45 100644 --- a/markdown/boot/3.3.1/reference/using/build-systems.md +++ b/markdown/boot/3.3.1/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.3.1/tutorial/first-application/index.md b/markdown/boot/3.3.1/tutorial/first-application/index.md index fdef2e8a..c66ab703 100644 --- a/markdown/boot/3.3.1/tutorial/first-application/index.md +++ b/markdown/boot/3.3.1/tutorial/first-application/index.md @@ -92,7 +92,7 @@ Open your favorite text editor and add the following: org.springframework.boot spring-boot-starter-parent - {version-spring-boot} + 3.3.1 @@ -118,7 +118,7 @@ Open your favorite text editor and add the following: ```gradle plugins { id 'java' - id 'org.springframework.boot' version '{version-spring-boot}' + id 'org.springframework.boot' version '3.3.1' } apply plugin: 'io.spring.dependency-management' @@ -341,7 +341,7 @@ $ mvn spring-boot:run \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v{version-spring-boot}) + :: Spring Boot :: (v3.3.1) ....... . . . ....... . . . (log output here) ....... . . . @@ -374,7 +374,7 @@ $ gradle bootRun \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v{version-spring-boot}) + :: Spring Boot :: (v3.3.1) ....... . . . ....... . . . (log output here) ....... . . . @@ -445,7 +445,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.3.1:repackage (default) @ myproject --- [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ @@ -473,7 +473,7 @@ $ java -jar target/myproject-0.0.1-SNAPSHOT.jar \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v{version-spring-boot}) + :: Spring Boot :: (v3.3.1) ....... . . . ....... . . . (log output here) ....... . . .