Skip to content

Commit 2241bc5

Browse files
authored
Update how-to-prepare-app-deployment.md
1 parent 4573049 commit 2241bc5

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

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

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -153,20 +153,19 @@ 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 |
158158
| 2.6.x | 2021.0.0+ aka Jubilee |
159+
| 2.5.x | 2020.3+ aka Ilford+ |
159160

160161
### [Enterprise tier](#tab/enterprise-tier)
161162

162163
| Spring Boot version | Spring Cloud version |
163164
|---------------------|----------------------------|
164-
| 3.0.0 | 2022.0.0-RC2 |
165+
| 3.0.x | 2022.0.x |
165166
| 2.7.x | 2021.0.3+ aka Jubilee |
166167
| 2.6.x | 2021.0.0+ aka Jubilee |
167168
| 2.5.x | 2020.3+ aka Ilford+ |
168-
| 2.4.x | 2020.0+ aka Ilford+ |
169-
| 2.3.x | Hoxton (starting with SR5) |
170169

171170
---
172171

@@ -175,15 +174,14 @@ For more information, see the following pages:
175174
* [Spring Boot support](https://spring.io/projects/spring-boot#support)
176175
* [Spring Cloud Config support](https://spring.io/projects/spring-cloud-config#support)
177176
* [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)
179177
* [Adding Spring Cloud To An Existing Spring Boot Application](https://spring.io/projects/spring-cloud#adding-spring-cloud-to-an-existing-spring-boot-application)
180178

181179
> [!NOTE]
182180
> - The support for Spring Boot 3.0 is still in preview, so you shouldn't use it in production.
183181
184-
### Dependencies for Spring Boot version 2.4/2.5/2.6/2.7
182+
### Dependencies for Spring Boot version 2.5/2.6/2.7
185183

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

188186
```xml
189187
<!-- Spring Boot dependencies -->
@@ -199,7 +197,7 @@ For Spring Boot version 2.4/2.5, add the following dependencies to the applicati
199197
<dependency>
200198
<groupId>org.springframework.cloud</groupId>
201199
<artifactId>spring-cloud-dependencies</artifactId>
202-
<version>2020.0.2</version>
200+
<version>2020.0.6</version>
203201
<type>pom</type>
204202
<scope>import</scope>
205203
</dependency>
@@ -214,7 +212,7 @@ For Spring Boot version 2.6/2.7, add the following dependencies to the applicati
214212
<parent>
215213
<groupId>org.springframework.boot</groupId>
216214
<artifactId>spring-boot-starter-parent</artifactId>
217-
<version>2.7.2</version>
215+
<version>2.7.8</version>
218216
</parent>
219217

220218
<!-- Spring Cloud dependencies -->
@@ -223,7 +221,7 @@ For Spring Boot version 2.6/2.7, add the following dependencies to the applicati
223221
<dependency>
224222
<groupId>org.springframework.cloud</groupId>
225223
<artifactId>spring-cloud-dependencies</artifactId>
226-
<version>2021.0.3</version>
224+
<version>2021.0.6</version>
227225
<type>pom</type>
228226
<scope>import</scope>
229227
</dependency>

0 commit comments

Comments
 (0)