Skip to content

Commit 07e7bee

Browse files
authored
Update spring-cloud-tutorial-prepare-app-deployment.md
1 parent c8c5969 commit 07e7bee

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

articles/spring-cloud/spring-cloud-tutorial-prepare-app-deployment.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ Azure Spring Cloud supports both Java 8 and Java 11. The hosting environment con
2020

2121
## Spring Boot and Spring Cloud versions
2222

23-
Azure Spring Cloud supports only Spring Boot apps. It supports both Spring Boot version 2.0 and version 2.1. The following table lists the supported Spring Boot and Spring Cloud combinations:
23+
Azure Spring Cloud supports only Spring Boot apps. It supports both Spring Boot version 2.1 and version 2.2. The following table lists the supported Spring Boot and Spring Cloud combinations:
2424

2525
Spring Boot version | Spring Cloud version
2626
---|---
27-
2.0 | Finchley.RELEASE
2827
2.1 | Greenwich.RELEASE
28+
2.2 | Hoxton.RELEASE
2929

3030
Verify that your pom.xml file has the correct Spring Boot and Spring Cloud dependencies based on your Spring Boot version.
3131

32-
### Dependencies for Spring Boot version 2.0
32+
### Dependencies for Spring Boot version 2.1
3333

3434
```xml
3535
<!-- Spring Boot dependencies -->
3636
<parent>
3737
<groupId>org.springframework.boot</groupId>
3838
<artifactId>spring-boot-starter-parent</artifactId>
39-
<version>2.0.9.RELEASE</version>
39+
<version>2.1.12.RELEASE</version>
4040
</parent>
4141

4242
<!-- Spring Cloud dependencies -->
@@ -45,22 +45,22 @@ Verify that your pom.xml file has the correct Spring Boot and Spring Cloud depen
4545
<dependency>
4646
<groupId>org.springframework.cloud</groupId>
4747
<artifactId>spring-cloud-dependencies</artifactId>
48-
<version>Finchley.SR4</version>
48+
<version>Greenwich.SR4</version>
4949
<type>pom</type>
5050
<scope>import</scope>
5151
</dependency>
5252
</dependencies>
5353
</dependencyManagement>
5454
```
5555

56-
### Dependencies for Spring Boot version 2.1
56+
### Dependencies for Spring Boot version 2.2
5757

5858
```xml
5959
<!-- Spring Boot dependencies -->
6060
<parent>
6161
<groupId>org.springframework.boot</groupId>
6262
<artifactId>spring-boot-starter-parent</artifactId>
63-
<version>2.1.8.RELEASE</version>
63+
<version>2.2.4.RELEASE</version>
6464
</parent>
6565

6666
<!-- Spring Cloud dependencies -->
@@ -69,7 +69,7 @@ Verify that your pom.xml file has the correct Spring Boot and Spring Cloud depen
6969
<dependency>
7070
<groupId>org.springframework.cloud</groupId>
7171
<artifactId>spring-cloud-dependencies</artifactId>
72-
<version>Greenwich.SR3</version>
72+
<version>Hoxton.SR1</version>
7373
<type>pom</type>
7474
<scope>import</scope>
7575
</dependency>
@@ -85,28 +85,28 @@ The following table lists the correct Azure Spring Cloud versions for your app t
8585

8686
Spring Boot version | Spring Cloud version | Azure Spring Cloud version
8787
---|---|---
88-
2.0 | Finchley.RELEASE | 2.0
8988
2.1 | Greenwich.RELEASE | 2.1
89+
2.2 | Hoxton.RELEASE | 2.2
9090

9191
Include one of the following dependencies in your pom.xml file. Select the dependency whose Azure Spring Cloud version matches your own.
9292

93-
### Dependency for Azure Spring Cloud version 2.0
93+
### Dependency for Azure Spring Cloud version 2.1
9494

9595
```xml
9696
<dependency>
9797
<groupId>com.microsoft.azure</groupId>
9898
<artifactId>spring-cloud-starter-azure-spring-cloud-client</artifactId>
99-
<version>2.0.0</version>
99+
<version>2.1.1</version>
100100
</dependency>
101101
```
102102

103-
### Dependency for Azure Spring Cloud version 2.1
103+
### Dependency for Azure Spring Cloud version 2.2
104104

105105
```xml
106106
<dependency>
107107
<groupId>com.microsoft.azure</groupId>
108108
<artifactId>spring-cloud-starter-azure-spring-cloud-client</artifactId>
109-
<version>2.1.0</version>
109+
<version>2.2.0</version>
110110
</dependency>
111111
```
112112

0 commit comments

Comments
 (0)