Update sample builds to latest versions

This commit is contained in:
Dave Syer
2017-12-11 15:38:50 +00:00
parent 2895a4597d
commit 540b4d378e
13 changed files with 56 additions and 62 deletions

View File

@@ -1,7 +1,7 @@
buildscript {
ext {
springBootVersion = '1.5.2.RELEASE'
wrapperVersion = '1.0.7.RELEASE'
springBootVersion = '1.5.10.BUILD-SNAPSHOT'
wrapperVersion = '1.0.9.RELEASE'
}
repositories {
mavenLocal()
@@ -12,6 +12,8 @@ buildscript {
dependencies {
classpath("org.springframework.boot.experimental:spring-boot-thin-gradle-plugin:${wrapperVersion}")
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
// Remove this when Boot 1.5.10 is out.
classpath "io.spring.gradle:dependency-management-plugin:1.0.4.BUILD-SNAPSHOT"
}
}
@@ -36,10 +38,7 @@ repositories {
ext {
springCloudFunctionVersion = "1.0.0.BUILD-SNAPSHOT"
}
ext['reactor.version'] = "3.0.7.RELEASE"
// TODO: remove this when pom.xml generator is fixed
jar.dependsOn = [thinProperties]
ext['reactor.version'] = "3.1.1.RELEASE"
dependencyManagement {
imports {

View File

@@ -13,15 +13,15 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.1.RELEASE</version>
<version>1.5.9.RELEASE</version>
<relativePath/>
</parent>
<properties>
<java.version>1.8</java.version>
<spring-cloud-function.version>1.0.0.BUILD-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.7.RELEASE</wrapper.version>
<reactor.version>3.0.7.RELEASE</reactor.version>
<wrapper.version>1.0.9.RELEASE</wrapper.version>
<reactor.version>3.1.1.RELEASE</reactor.version>
</properties>
<dependencies>