瀏覽代碼

Remove version number from Spring Boot starters

Greg Turnquist 12 年之前
父節點
當前提交
5e3093a22f
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1
    1
      complete/build.gradle
  2. 1
    1
      initial/build.gradle

+ 1
- 1
complete/build.gradle 查看文件

@@ -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
     compile("com.fasterxml.jackson.core:jackson-databind")
29 29
     testCompile("junit:junit")
30 30
 }

+ 1
- 1
initial/build.gradle 查看文件

@@ -20,7 +20,7 @@ repositories {
20 20
 }
21 21
 
22 22
 dependencies {
23
-    compile("org.springframework.boot:spring-boot-starter-web:1.0.0.RC3")
23
+    compile("org.springframework.boot:spring-boot-starter-web")
24 24
     compile("com.fasterxml.jackson.core:jackson-databind")
25 25
     testCompile("junit:junit")
26 26
 }