Explorar el Código

Remove version number from Spring Boot starters

Greg Turnquist hace 12 años
padre
commit
5e3093a22f
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1
    1
      complete/build.gradle
  2. 1
    1
      initial/build.gradle

+ 1
- 1
complete/build.gradle Ver fichero

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 Ver fichero

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
 }