Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreOn behalf of the community, I am pleased to announce that the General Availability (RELEASE) of the Spring Cloud 2021.0.6 Release Train is available today. The release can be found in Maven Central. You can check out the 2021.0.6 release notes for more information.
See the project page for all the issues and pull requests included in this release.
The following modules were updated as part of 2021.0.6:
Module | Version |
---|---|
Spring Cloud Netflix | 3.1.5 |
Spring Cloud Config | 3.1.6 |
Spring Cloud Build | 3.1.6 |
Spring Cloud Sleuth | 3.1.7 |
Spring Cloud Gateway | 3.1.6 |
Spring Cloud Starter Build | 2021.0.6 |
Spring Cloud Consul | 3.1.2 |
Spring Cloud Contract | 3.1.6 |
Spring Cloud Vault | 3.1.2 |
Spring Cloud Kubernetes | 2.1.6 |
Spring Cloud Zookeeper | 3.1.3 |
Spring Cloud Task | 2.4.6 |
Spring Cloud Openfeign | 3.1.6 |
Spring Cloud Circuitbreaker | 2.1.6 |
Spring Cloud Stream | 3.2.7 |
Spring Cloud Commons | 3.1.6 |
Spring Cloud Function | 3.2.9 |
As always, we welcome feedback on GitHub, on Gitter, on Stack Overflow, and on Twitter.
To get started with Maven with a BOM (dependency management only):
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2021.0.6</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
...
</dependencies>
or with Gradle:
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.9'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '8'
repositories {
mavenCentral()
}
ext {
set('springCloudVersion', "2021.0.6")
}
dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-config'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
//...
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}