diff --git a/spring-boot-samples/spring-boot-sample-actuator/build.gradle b/spring-boot-samples/spring-boot-sample-actuator/build.gradle index 7735ff76405..f6a5ae4cd61 100644 --- a/spring-boot-samples/spring-boot-sample-actuator/build.gradle +++ b/spring-boot-samples/spring-boot-sample-actuator/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - springBootVersion = '0.5.0.BUILD-SNAPSHOT' + springBootVersion = '1.0.0.BUILD-SNAPSHOT' } repositories { mavenLocal() @@ -18,10 +18,11 @@ apply plugin: 'spring-boot' jar { baseName = 'spring-boot-sample-actuator' - version = '0.5.0' + version = '1.0.0' } repositories { + mavenLocal() mavenCentral() maven { url "http://repo.springsource.org/libs-snapshot" } } @@ -30,10 +31,10 @@ dependencies { configurations { insecure.exclude module: 'spring-boot-starter-security' } - compile("org.springframework.boot:spring-boot-starter-web:${springBootVersion}") - compile("org.springframework.boot:spring-boot-starter-actuator:${springBootVersion}") - compile("org.springframework.boot:spring-boot-starter-security:${springBootVersion}") - testCompile("junit:junit:4.11") + compile("org.springframework.boot:spring-boot-starter-web") + compile("org.springframework.boot:spring-boot-starter-actuator") + compile("org.springframework.boot:spring-boot-starter-security") + testCompile("junit:junit") insecure configurations.runtime } diff --git a/spring-boot-samples/spring-boot-sample-simple/build.gradle b/spring-boot-samples/spring-boot-sample-simple/build.gradle index 73b890a388d..714ce5820bb 100644 --- a/spring-boot-samples/spring-boot-sample-simple/build.gradle +++ b/spring-boot-samples/spring-boot-sample-simple/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - springBootVersion = '0.5.0.BUILD-SNAPSHOT' + springBootVersion = '1.0.0.BUILD-SNAPSHOT' } repositories { mavenLocal() @@ -19,17 +19,18 @@ apply plugin: 'spring-boot' jar { baseName = 'spring-boot-sample-simple' - version = '0.5.0' + version = '1.0.0' } repositories { + mavenLocal() mavenCentral() maven { url "http://repo.springsource.org/libs-snapshot" } } dependencies { - compile("org.springframework.boot:spring-boot-starter:${springBootVersion}") - testCompile("org.springframework.boot:spring-boot-starter-test:${springBootVersion}") + compile("org.springframework.boot:spring-boot-starter") + testCompile("org.springframework.boot:spring-boot-starter-test") } task wrapper(type: Wrapper) {