Skip to content

Commit 42b4bab

Browse files
authored
Merge pull request #94631 from jpconnock/spring-cloud-version-fix
Updating dependcies and version
2 parents f1df369 + 4d52f87 commit 42b4bab

File tree

1 file changed

+5
-15
lines changed

1 file changed

+5
-15
lines changed

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

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -89,27 +89,17 @@ The table below lists the correct versions for your Spring Boot/Spring Cloud app
8989

9090
Spring Boot version | Spring Cloud version | Azure Spring Cloud version
9191
---|---|---
92-
2.0.x | Finchley.RELEASE | 2.0.0-SNAPSHOT
93-
2.1.x | Greenwich.RELEASE | 2.1.0-SNAPSHOT
92+
2.0.x | Finchley.RELEASE | 2.0.x
93+
2.1.x | Greenwich.RELEASE | 2.1.x
9494

9595
Include this snippet in your `pom.xml` with the correct Azure Spring Cloud version in the 'dependency':
9696

9797
```xml
98-
<repositories>
99-
<repository>
100-
<id>nexus-snapshots</id>
101-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
102-
<snapshots>
103-
<enabled>true</enabled>
104-
</snapshots>
105-
</repository>
106-
</repositories>
107-
108-
<dependency>
98+
<dependency>
10999
<groupId>com.microsoft.azure</groupId>
110100
<artifactId>spring-cloud-starter-azure-spring-cloud-client</artifactId>
111-
<version>2.1.0-SNAPSHOT</version>
112-
</dependency>
101+
<version>2.1.0</version>
102+
</dependency>
113103
```
114104

115105
## Other required dependencies

0 commit comments

Comments
 (0)