搶先一步
VMware 提供培訓和認證,以加速您的進度。
瞭解更多我很高興代表團隊宣布 Spring Cloud Camden 發布系列的 Milestone 1 版本今天發布。此版本可在我們的 Spring Milestone 儲存庫中找到。 我們進行了許多增強功能和錯誤修復! 您可以查看 Camden.M1
發布說明以獲取更多資訊。
以下模組已更新作為 Camden.M1 的一部分
Spring Cloud Build 1.2.0.RELEASE
Spring Cloud Stream Brooklyn.M1
Spring Cloud Bus 1.2.0.M1
Spring Cloud Config 1.2.0.M1
Spring Cloud Netflix 1.2.0.M1
Spring Cloud Consul 1.1.0.M1
Spring Cloud Contract 1.0.0.M2
Spring Cloud CLI 1.2.0.M1
合併後的發布系列文件可在此處取得:這裡
一如既往地,我們歡迎您的回饋:無論是在 GitHub 上、在 Gitter 上、在 Stack Overflow 上,還是在 Twitter 上。
若要開始使用具有 BOM 的 Maven(僅限相依性管理)
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>http://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Camden.M1</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>
或使用 Gradle
buildscript {
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:0.6.0.RELEASE"
}
}
repositories {
maven {
url 'http://repo.spring.io/milestone'
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Camden.M1'
}
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-eureka'
...
}