Spring Cloud Dalston SR4 现已发布

发布 | Ryan Baxter | 2017 年 10 月 03 日 | ...

我谨代表社区宣布 Spring Cloud Dalston Release Train 的 Service Release 4 (SR4) 今天发布。该版本可在 Maven Central 仓库中找到。您可以查看 Dalston 的 发布说明以获取更多信息

以下模块已作为 Dalston.SR4 的一部分进行了更新

模块 版本
Spring Cloud Contract 1.1.4.RELEASE
Spring Cloud Config 1.3.3.RELEASE
Spring Cloud Commons 1.2.4.RELEASE
Spring Cloud Netflix 1.3.5.RELEASE
Spring Cloud Sleuth 1.2.5.RELEASE

与往常一样,我们欢迎在 GitHubGitterStack OverflowTwitter 上提供反馈。

要使用 Maven 和 BOM(仅用于依赖管理)开始

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Dalston.SR4</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-eureka</artifactId>
    </dependency>
    ...
</dependencies>

或使用 Gradle

buildscript {
    dependencies {
        classpath "io.spring.gradle:dependency-management-plugin:1.0.2.RELEASE"
    }
}

apply plugin: "io.spring.dependency-management"

dependencyManagement {
    imports {
        mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Dalston.SR4'
    }
}

dependencies {
    compile 'org.springframework.cloud:spring-cloud-starter-config'
    compile 'org.springframework.cloud:spring-cloud-starter-eureka'
    ...
}

获取 Spring 新闻通讯

通过 Spring 新闻通讯保持联系

订阅

抢占先机

VMware 提供培训和认证,以加速您的进步。

了解更多

获取支持

Tanzu Spring 在一个简单的订阅中提供对 OpenJDK™、Spring 和 Apache Tomcat® 的支持和二进制文件。

了解更多

即将举行的活动

查看 Spring 社区中所有即将举行的活动。

查看所有