Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreOn behalf of the team, I am happy to announce the new service release of the Spring Cloud Camden Release Train. Camden.SR1
can be found in our Spring Release repository or in Maven Central. You can check out the Camden release notes for more information.
The following modules form Camden.SR1:
Module | Version |
---|---|
Spring Cloud AWS | 1.1.3.RELEASE |
Spring Cloud Bus | 1.2.1.RELEASE |
Spring Cloud Commons | 1.1.4.RELEASE |
Spring Cloud Contract | 1.0.1.RELEASE |
Spring Cloud Config | 1.2.1.RELEASE |
Spring Cloud Netflix | 1.2.1.RELEASE |
Spring Cloud Security | 1.1.3.RELEASE |
Spring Cloud Sleuth | 1.0.10.RELEASE |
Spring Cloud Stream | Brooklyn.RELEASE |
Spring Cloud Task | 1.0.3.RELEASE |
Spring Cloud Zookeeper | 1.0.3.RELEASE |
The combined release train documentation is available here.
Also Spring Cloud CLI 1.2.1.RELEASE
got released. You can check out the project page here
Spring Cloud Consul did not get updated in this release, however version 1.1.1.RELEASE
was released shortly after Camden.SR1 and contains a couple of fixes user's might be interested in. If you would like to upgrade the version of Consul used in your application you will have to manually specify the version number in your Maven or Gradle project.
And, as always, we welcome feedback: either on GitHub, on Gitter, on Stack Overflow, or on Twitter.
To get started with Maven with a BOM (dependency management only):
<dependencyManagement>
<dependencies>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Camden.SR1</version>
<type>pom</type>
<scope>import</scope>
</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-eureka</artifactId>
</dependency>
...
</dependencies>
or with Gradle:
buildscript {
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.4.1.RELEASE"
}
}
apply plugin: "spring-boot"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Camden.SR1'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-eureka'
...
}