ソースを参照

Remove version number from Spring Boot starters

Greg Turnquist 10 年 前
コミット
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
 }