Przeglądaj źródła

Remove version number from Spring Boot starters

Greg Turnquist 12 lat temu
rodzic
commit
db52c4939e
2 zmienionych plików z 4 dodań i 4 usunięć
  1. 3
    3
      complete/build.gradle
  2. 1
    1
      initial/build.gradle

+ 3
- 3
complete/build.gradle Wyświetl plik

25
 
25
 
26
 dependencies {
26
 dependencies {
27
     // tag::jetty[]
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
         exclude module: "spring-boot-starter-tomcat"
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
     // end::jetty[]
32
     // end::jetty[]
33
     // tag::actuator[]
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
     // end::actuator[]
35
     // end::actuator[]
36
     testCompile("junit:junit")
36
     testCompile("junit:junit")
37
 }
37
 }

+ 1
- 1
initial/build.gradle Wyświetl plik

24
 }
24
 }
25
 
25
 
26
 dependencies {
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
     testCompile("junit:junit")
28
     testCompile("junit:junit")
29
 }
29
 }
30
 
30