设为首页收藏本站

LUPA开源社区

 找回密码
 注册
文章 帖子 博客
LUPA开源社区 首页 业界资讯 软件追踪 查看内容

Spring Cloud大版本Spring Cloud Edgware.SR2发布

2018-2-10 21:46| 发布者: joejoe0332| 查看: 698| 评论: 0|原作者: oschina|来自: oschina

摘要: Spring Cloud Edgware.SR2 已发布,该版本可以在Maven Central找到,本次更新主要是对其包含的一些模块进行了升级,或查看Edgware 发布说明以获取更多信息。以下模块作为 Edgware.SR2 的一部分已进行了升级:MODULEV ...

Spring Cloud Edgware.SR2 已发布,该版本可以在 Maven Central 找到,本次更新主要是对其包含的一些模块进行了升级,或查看 Edgware 发布说明以获取更多信息。

以下模块作为 Edgware.SR2 的一部分已进行了升级:

MODULEVERSION
Spring Cloud Commons1.3.2.RELEASE
Spring Cloud Contract1.2.3.RELEASE
Spring Cloud Config1.4.2.RELEASE
Spring Cloud Build1.3.8.RELEASE
Spring Boot1.5.10.RELEASE
Spring Cloud Consul1.3.2.RELEASE
Spring Cloud Netflix1.4.3.RELEASE
Spring Cloud Bus1.3.3.RELEASE
Spring Cloud Sleuth1.3.2.RELEASE

Edgware.SR2 (2018-02-09)

  • Spring Cloud Bus 1.3.3.RELEASE (issues)

  • Spring Cloud Config 1.4.2.RELEASE (issues)

  • Spring Cloud Commons 1.3.2.RELEASE (issues)

  • Spring Cloud Sleuth 1.3.2.RELEASE (issues)

  • Spring Cloud Contract 1.2.3.RELEASE (issues)

  • Spring Cloud Netflix 1.4.3.RELEASE (issues)

  • Spring Cloud Consul 1.3.2.RELEASE (issues)

使用

Maven

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

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:Edgware.SR2'
    }
}

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

点此查看发布主页


酷毙

雷人

鲜花

鸡蛋

漂亮
  • 快毕业了,没工作经验,
    找份工作好难啊?
    赶紧去人才芯片公司磨练吧!!

最新评论

关于LUPA|人才芯片工程|人才招聘|LUPA认证|LUPA教育|LUPA开源社区 ( 浙B2-20090187 浙公网安备 33010602006705号   

返回顶部