Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions catalog.json
Original file line number Diff line number Diff line change
@@ -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-16T09:22:12.565Z",
"projects": {
"boot": {
"3.3.0": {
Expand Down Expand Up @@ -141,8 +141,8 @@
"released_at": "2026-09-12T12:33:11Z"
},
"3.5.6": {
"tag": "boot-3.5.6",
"released_at": "2026-09-12T12:33:55Z"
"tag": "boot-3.5.6+rebuild.1",
"released_at": "2026-09-16T09:22:11Z"
},
"3.5.7": {
"tag": "boot-3.5.7",
Expand Down
2 changes: 1 addition & 1 deletion markdown/boot/3.5.6/build-tool-plugin/antlib.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <directory containing spring-boot-antlib-{version-spring-boot}.jar>
$ ant -lib <directory containing spring-boot-antlib-3.5.6.jar>
```

> [!TIP]
Expand Down
6 changes: 3 additions & 3 deletions markdown/boot/3.5.6/cli/using-the-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6
```

<a id="cli.using-the-cli.initialize-new-project"></a>
Expand Down Expand Up @@ -153,15 +153,15 @@ 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.6)
Hit TAB to complete. Type \'help' and hit RETURN for help, and \'exit' to quit.
```

From inside the embedded shell, you can run other commands directly:

```shell
$ version
Spring CLI v{version-spring-boot}
Spring CLI v3.5.6
```

The embedded shell supports ANSI color output as well as `tab` completion.
Expand Down
4 changes: 2 additions & 2 deletions markdown/boot/3.5.6/how-to/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To generate build information with Maven, add an execution for the `build-info`
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>{version-spring-boot}</version>
<version>3.5.6</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -158,7 +158,7 @@ However, you must additionally add an `<executions>` section, as follows:
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>{version-spring-boot}</version>
<version>3.5.6</version>
<executions>
<execution>
<goals>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ You should have a `<parent>` section that looks like this:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>{version-spring-boot}</version>
<version>3.5.6</version>
</parent>
```

Expand Down Expand Up @@ -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`:
Expand Down Expand Up @@ -264,7 +264,7 @@ You should see output similar to the following:
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v{version-spring-boot})
:: Spring Boot :: (v3.5.6)
....... . . .
....... . . . (log output here)
....... . . .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ You should have a `<parent>` section that looks like this:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>{version-spring-boot}</version>
<version>3.5.6</version>
</parent>
```

Expand Down
8 changes: 4 additions & 4 deletions markdown/boot/3.5.6/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6
```

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.6-bin/spring-3.5.6/
$ sdk default springboot dev
$ spring --version
Spring CLI v{version-spring-boot}
Spring CLI v3.5.6
```

The preceding instructions install a local instance of `spring` called the `dev` instance.
Expand All @@ -122,7 +122,7 @@ $ sdk ls springboot
Available Springboot Versions
================================================================================
> + dev
* {version-spring-boot}
* 3.5.6

================================================================================
+ - local version
Expand Down
2 changes: 1 addition & 1 deletion markdown/boot/3.5.6/reference/using/build-systems.md
Original file line number Diff line number Diff line change
Expand Up @@ -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">

<property name="spring-boot.version" value="{version-spring-boot}" />
<property name="spring-boot.version" value="3.5.6" />

<target name="resolve" description="--> retrieve dependencies with ivy">
<ivy:retrieve pattern="lib/[conf]/[artifact]-[type]-[revision].[ext]" />
Expand Down
12 changes: 6 additions & 6 deletions markdown/boot/3.5.6/tutorial/first-application/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Open your favorite text editor and add the following:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>{version-spring-boot}</version>
<version>3.5.6</version>
</parent>

<!-- Additional lines to be added here... -->
Expand All @@ -119,7 +119,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.5.6'
}

apply plugin: 'io.spring.dependency-management'
Expand Down Expand Up @@ -343,7 +343,7 @@ $ mvn spring-boot:run
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v{version-spring-boot})
:: Spring Boot :: (v3.5.6)
....... . . .
....... . . . (log output here)
....... . . .
Expand Down Expand Up @@ -376,7 +376,7 @@ $ gradle bootRun
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v{version-spring-boot})
:: Spring Boot :: (v3.5.6)
....... . . .
....... . . . (log output here)
....... . . .
Expand Down Expand Up @@ -447,7 +447,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.6:repackage (default) @ myproject ---
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
Expand Down Expand Up @@ -475,7 +475,7 @@ $ java -jar target/myproject-0.0.1-SNAPSHOT.jar
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v{version-spring-boot})
:: Spring Boot :: (v3.5.6)
....... . . .
....... . . . (log output here)
....... . . .
Expand Down