소스 검색

Remove version number from Spring Boot starters

Greg Turnquist 12 년 전
부모
커밋
db52c4939e
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 3
    3
      complete/build.gradle
  2. 1
    1
      initial/build.gradle

+ 3
- 3
complete/build.gradle 파일 보기

@@ -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 파일 보기

@@ -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