diff --git a/catalog.json b/catalog.json index e5b2145a..aad51d18 100644 --- a/catalog.json +++ b/catalog.json @@ -1,12 +1,12 @@ { "$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:08.166Z", "projects": { "boot": { "3.3.0": { - "tag": "boot-3.3.0", - "released_at": "2026-09-12T12:37:44Z" + "tag": "boot-3.3.0+rebuild.1", + "released_at": "2026-09-16T08:43:07Z" }, "3.3.1": { "tag": "boot-3.3.1", diff --git a/markdown/boot/3.3.0/build-tool-plugin/antlib.md b/markdown/boot/3.3.0/build-tool-plugin/antlib.md index 1e41a6cb..14806e81 100644 --- a/markdown/boot/3.3.0/build-tool-plugin/antlib.md +++ b/markdown/boot/3.3.0/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.0/cli/using-the-cli.md b/markdown/boot/3.3.0/cli/using-the-cli.md index 17bb59a3..8265542a 100644 --- a/markdown/boot/3.3.0/cli/using-the-cli.md +++ b/markdown/boot/3.3.0/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.0 ``` @@ -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.0) 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.0 ``` The embedded shell supports ANSI color output as well as `tab` completion. diff --git a/markdown/boot/3.3.0/how-to/build.md b/markdown/boot/3.3.0/how-to/build.md index ceca01e4..ec7c3031 100644 --- a/markdown/boot/3.3.0/how-to/build.md +++ b/markdown/boot/3.3.0/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.0 @@ -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.0 diff --git a/markdown/boot/3.3.0/installing.md b/markdown/boot/3.3.0/installing.md index 1b637c58..8e1343a3 100644 --- a/markdown/boot/3.3.0/installing.md +++ b/markdown/boot/3.3.0/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.0 ``` 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.0-bin/spring-3.3.0/ $ sdk default springboot dev $ spring --version -Spring CLI v{version-spring-boot} +Spring CLI v3.3.0 ``` 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.0 ================================================================================ + - local version diff --git a/markdown/boot/3.3.0/reference/native-image/developing-your-first-application.md b/markdown/boot/3.3.0/reference/native-image/developing-your-first-application.md index a8f4c302..0bfb177e 100644 --- a/markdown/boot/3.3.0/reference/native-image/developing-your-first-application.md +++ b/markdown/boot/3.3.0/reference/native-image/developing-your-first-application.md @@ -91,7 +91,7 @@ You should have a `` section that looks like this: org.springframework.boot spring-boot-starter-parent - {version-spring-boot} + 3.3.0 ``` @@ -191,8 +191,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`: @@ -265,7 +265,7 @@ You should see output similar to the following: \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v{version-spring-boot}) + :: Spring Boot :: (v3.3.0) ....... . . . ....... . . . (log output here) ....... . . . diff --git a/markdown/boot/3.3.0/reference/native-image/testing-native-applications.md b/markdown/boot/3.3.0/reference/native-image/testing-native-applications.md index cd66520d..3eaabadc 100644 --- a/markdown/boot/3.3.0/reference/native-image/testing-native-applications.md +++ b/markdown/boot/3.3.0/reference/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.0 ``` diff --git a/markdown/boot/3.3.0/reference/using/build-systems.md b/markdown/boot/3.3.0/reference/using/build-systems.md index 430d6cf3..7e6a6596 100644 --- a/markdown/boot/3.3.0/reference/using/build-systems.md +++ b/markdown/boot/3.3.0/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.0/tutorial/first-application/index.md b/markdown/boot/3.3.0/tutorial/first-application/index.md index 0a93153b..24dec181 100644 --- a/markdown/boot/3.3.0/tutorial/first-application/index.md +++ b/markdown/boot/3.3.0/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.0 @@ -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.0' } apply plugin: 'io.spring.dependency-management' @@ -341,7 +341,7 @@ $ mvn spring-boot:run \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v{version-spring-boot}) + :: Spring Boot :: (v3.3.0) ....... . . . ....... . . . (log output here) ....... . . . @@ -374,7 +374,7 @@ $ gradle bootRun \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v{version-spring-boot}) + :: Spring Boot :: (v3.3.0) ....... . . . ....... . . . (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.0: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.0) ....... . . . ....... . . . (log output here) ....... . . .