Skip to content

Commit 3f8e4b3

Browse files
authored
Merge pull request #107593 from showpune/patch-3
Update how-to-prepare-app-deployment.md
2 parents 60c542b + d62827c commit 3f8e4b3

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

articles/spring-apps/how-to-prepare-app-deployment.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -153,20 +153,17 @@ The following table lists the supported Spring Boot and Spring Cloud combination
153153

154154
| Spring Boot version | Spring Cloud version |
155155
|---------------------|-----------------------|
156-
| 3.0.0 | 2022.0.0-RC2 |
156+
| 3.0.x | 2022.0.x |
157157
| 2.7.x | 2021.0.3+ aka Jubilee |
158-
| 2.6.x | 2021.0.0+ aka Jubilee |
159158

160159
### [Enterprise plan](#tab/enterprise-plan)
161160

162161
| Spring Boot version | Spring Cloud version |
163162
|---------------------|----------------------------|
164-
| 3.0.0 | 2022.0.0-RC2 |
163+
| 3.0.x | 2022.0.x |
165164
| 2.7.x | 2021.0.3+ aka Jubilee |
166165
| 2.6.x | 2021.0.0+ aka Jubilee |
167166
| 2.5.x | 2020.3+ aka Ilford+ |
168-
| 2.4.x | 2020.0+ aka Ilford+ |
169-
| 2.3.x | Hoxton (starting with SR5) |
170167

171168
---
172169

@@ -175,15 +172,14 @@ For more information, see the following pages:
175172
* [Spring Boot support](https://spring.io/projects/spring-boot#support)
176173
* [Spring Cloud Config support](https://spring.io/projects/spring-cloud-config#support)
177174
* [Spring Cloud Netflix support](https://spring.io/projects/spring-cloud-netflix#support)
178-
* [Spring Cloud 2020.0.0 (aka Ilford) Is Available](https://spring.io/blog/2020/12/22/spring-cloud-2020-0-0-aka-ilford-is-available)
179175
* [Adding Spring Cloud To An Existing Spring Boot Application](https://spring.io/projects/spring-cloud#adding-spring-cloud-to-an-existing-spring-boot-application)
180176

181177
> [!NOTE]
182178
> - The support for Spring Boot 3.0 is still in preview, so you shouldn't use it in production.
183179
184-
### Dependencies for Spring Boot version 2.4/2.5/2.6/2.7
180+
### Dependencies for Spring Boot version 2.5/2.6/2.7
185181

186-
For Spring Boot version 2.4/2.5, add the following dependencies to the application POM file.
182+
For Spring Boot version 2.5, add the following dependencies to the application POM file.
187183

188184
```xml
189185
<!-- Spring Boot dependencies -->
@@ -199,7 +195,7 @@ For Spring Boot version 2.4/2.5, add the following dependencies to the applicati
199195
<dependency>
200196
<groupId>org.springframework.cloud</groupId>
201197
<artifactId>spring-cloud-dependencies</artifactId>
202-
<version>2020.0.2</version>
198+
<version>2020.0.6</version>
203199
<type>pom</type>
204200
<scope>import</scope>
205201
</dependency>
@@ -214,7 +210,7 @@ For Spring Boot version 2.6/2.7, add the following dependencies to the applicati
214210
<parent>
215211
<groupId>org.springframework.boot</groupId>
216212
<artifactId>spring-boot-starter-parent</artifactId>
217-
<version>2.7.2</version>
213+
<version>2.7.8</version>
218214
</parent>
219215

220216
<!-- Spring Cloud dependencies -->
@@ -223,7 +219,7 @@ For Spring Boot version 2.6/2.7, add the following dependencies to the applicati
223219
<dependency>
224220
<groupId>org.springframework.cloud</groupId>
225221
<artifactId>spring-cloud-dependencies</artifactId>
226-
<version>2021.0.3</version>
222+
<version>2021.0.6</version>
227223
<type>pom</type>
228224
<scope>import</scope>
229225
</dependency>

0 commit comments

Comments
 (0)