Przeglądaj źródła

Remove version number from Spring Boot starters

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

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

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

20
 }
20
 }
21
 
21
 
22
 dependencies {
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
     compile("com.fasterxml.jackson.core:jackson-databind")
24
     compile("com.fasterxml.jackson.core:jackson-databind")
25
     testCompile("junit:junit")
25
     testCompile("junit:junit")
26
 }
26
 }