搶先一步
VMware 提供培訓和認證,可加速您的進度。
瞭解更多我很高興代表社群宣布 Spring Cloud Edgware Release Train 的 Service Release 6 (SR6) 今天已發布。 此版本可在 Maven Central 中找到。 您可以查看 Edgware 發布說明以獲取更多資訊。
提醒您,Edgware 發布系列將於 2019 年 8 月 1 日達到 EOL 狀態。
以下模組已更新為 Edgware.SR6 的一部分
| 模組 | 版本 | 問題 |--- |--- |--- |--- | Spring Cloud Starter | Edgware.SR6 | | Spring Cloud Release | Edgware.SR6 | | Spring Cloud Security | 1.2.4.RELEASE | | Spring Cloud Bus | 1.3.5.RELEASE | | Spring Cloud Stream | Ditmars.SR5 | | Spring Cloud Task | 1.2.4.RELEASE | | Spring Cloud Netflix | 1.4.7.RELEASE | (問題) | Spring Cloud Sleuth | 1.3.6.RELEASE | (問題) | Spring Cloud Config | 1.4.7.RELEASE | (問題) | Spring Cloud | Edgware.SR6 | | Spring Cloud Dependencies | Edgware.SR6 | | Spring Cloud Commons | 1.3.6.RELEASE | (問題) | Spring Cloud Build | 1.3.13.RELEASE | | Spring Cloud Vault | 1.1.3.RELEASE | | Spring Cloud Zookeeper | 1.2.3.RELEASE | | Spring Cloud Contract | 1.2.7.RELEASE | (問題) | Spring Cloud Aws | 1.2.4.RELEASE | | Spring Cloud Consul | 1.3.6.RELEASE | | Spring Cloud Cloudfoundry | 1.1.3.RELEASE | | Spring Cloud Function | 1.0.2.RELEASE | | Spring Cloud Gateway | 1.0.3.RELEASE |
與往常一樣,我們歡迎在 GitHub、Gitter、Stack Overflow 或 Twitter 上提供回饋意見。
若要使用具有 BOM(僅依賴管理)的 Maven
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Edgware.SR6</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.SR6'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
...
}