Browse Source

Remove version number from Spring Boot starters

Greg Turnquist 10 years ago
parent
commit
db52c4939e
2 changed files with 4 additions and 4 deletions
  1. 3
    3
      complete/build.gradle
  2. 1
    1
      initial/build.gradle

+ 3
- 3
complete/build.gradle View File

@@ -25,13 +25,13 @@ repositories {
25 25
 
26 26
 dependencies {
27 27
     // tag::jetty[]
28
-    compile("org.springframework.boot:spring-boot-starter-web:1.0.0.RC3") {
28
+    compile("org.springframework.boot:spring-boot-starter-web") {
29 29
         exclude module: "spring-boot-starter-tomcat"
30 30
     }
31
-    compile("org.springframework.boot:spring-boot-starter-jetty:1.0.0.RC3")
31
+    compile("org.springframework.boot:spring-boot-starter-jetty")
32 32
     // end::jetty[]
33 33
     // tag::actuator[]
34
-    compile("org.springframework.boot:spring-boot-starter-actuator:1.0.0.RC3")
34
+    compile("org.springframework.boot:spring-boot-starter-actuator")
35 35
     // end::actuator[]
36 36
     testCompile("junit:junit")
37 37
 }

+ 1
- 1
initial/build.gradle View File

@@ -24,7 +24,7 @@ repositories {
24 24
 }
25 25
 
26 26
 dependencies {
27
-    compile("org.springframework.boot:spring-boot-starter-web:1.0.0.RC3")
27
+    compile("org.springframework.boot:spring-boot-starter-web")
28 28
     testCompile("junit:junit")
29 29
 }
30 30