DZone
Java Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Java Zone > Spring Cloud Camden SR1 is Available

Spring Cloud Camden SR1 is Available

If you're using Spring Cloud, you've probably been waiting for Camden. Its here, with more than 10 modules. See what they are and how you can get started with them.

Marcin Grzejszczak user avatar by
Marcin Grzejszczak
·
Oct. 27, 16 · Java Zone · News
Like (3)
Save
Tweet
5.32K Views

Join the DZone community and get the full member experience.

Join For Free

Welcome to 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.

Highlights of the Camden SR1 Release Train

The following modules form Camden.SR1:

  • 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. 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'
    ...
}


Spring Cloud Spring Framework

Published at DZone with permission of Marcin Grzejszczak, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Creating an Event-Driven Architecture in a Microservices Setting
  • What Emerging Technologies Make Data Centers More Energy Efficient?
  • Progressive Web Apps vs Native Apps: Differences and Similarities
  • Revoking Access to JWTs With a Blacklist/Deny List

Comments

Java Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo