Sfoglia il codice sorgente

Upgrade to Spring Boot 0.5.0.M4

Greg Turnquist 13 anni fa
parent
commit
f7be1b6628
6 ha cambiato i file con 16 aggiunte e 16 eliminazioni
  1. 3
    3
      README.ftl.md
  2. 5
    5
      README.md
  3. 4
    4
      complete/build.gradle
  4. 1
    1
      complete/pom.xml
  5. 2
    2
      initial/build.gradle
  6. 1
    1
      initial/pom.xml

+ 3
- 3
README.ftl.md Vedi File

@@ -133,10 +133,10 @@ What if you prefer Jetty over Tomcat? Jetty and Tomcat are both compliant servle
133 133
 Change your `build.gradle` to exclude Tomcat then add Jetty to the list of dependencies:
134 134
 
135 135
 ```groovy
136
-    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M2") {
136
+    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M4") {
137 137
         exclude module: "spring-boot-starter-tomcat"
138 138
     }
139
-    compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.M2")
139
+    compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.M4")
140 140
 ```
141 141
 
142 142
 If you are using Maven, the changes look like this:
@@ -237,7 +237,7 @@ If you are building a web site for your business, you probably need to add some
237 237
 Add this to your build file's list of dependencies:
238 238
 
239 239
 ```groovy
240
-    compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.M2")
240
+    compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.M4")
241 241
 ```
242 242
 
243 243
 If you are using Maven, add this to your list of dependencies:

+ 5
- 5
README.md Vedi File

@@ -64,7 +64,7 @@ buildscript {
64 64
         mavenLocal()
65 65
     }
66 66
     dependencies {
67
-        classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M2")
67
+        classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M4")
68 68
     }
69 69
 }
70 70
 
@@ -84,7 +84,7 @@ repositories {
84 84
 }
85 85
 
86 86
 dependencies {
87
-    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M2")
87
+    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M4")
88 88
     testCompile("junit:junit:4.11")
89 89
 }
90 90
 
@@ -249,10 +249,10 @@ What if you prefer Jetty over Tomcat? Jetty and Tomcat are both compliant servle
249 249
 Change your `build.gradle` to exclude Tomcat then add Jetty to the list of dependencies:
250 250
 
251 251
 ```groovy
252
-    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M2") {
252
+    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M4") {
253 253
         exclude module: "spring-boot-starter-tomcat"
254 254
     }
255
-    compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.M2")
255
+    compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.M4")
256 256
 ```
257 257
 
258 258
 If you are using Maven, the changes look like this:
@@ -383,7 +383,7 @@ If you are building a web site for your business, you probably need to add some
383 383
 Add this to your build file's list of dependencies:
384 384
 
385 385
 ```groovy
386
-    compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.M2")
386
+    compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.M4")
387 387
 ```
388 388
 
389 389
 If you are using Maven, add this to your list of dependencies:

+ 4
- 4
complete/build.gradle Vedi File

@@ -4,7 +4,7 @@ buildscript {
4 4
         mavenLocal()
5 5
     }
6 6
     dependencies {
7
-        classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M2")
7
+        classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M4")
8 8
     }
9 9
 }
10 10
 
@@ -24,11 +24,11 @@ repositories {
24 24
 }
25 25
 
26 26
 dependencies {
27
-    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M2") {
27
+    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M4") {
28 28
         exclude module: "spring-boot-starter-tomcat"
29 29
     }
30
-    compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.M2")
31
-    compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.M2")
30
+    compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.M4")
31
+    compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.M4")
32 32
     testCompile("junit:junit:4.11")
33 33
 }
34 34
 

+ 1
- 1
complete/pom.xml Vedi File

@@ -10,7 +10,7 @@
10 10
     <parent>
11 11
         <groupId>org.springframework.boot</groupId>
12 12
         <artifactId>spring-boot-starter-parent</artifactId>
13
-        <version>0.5.0.M2</version>
13
+        <version>0.5.0.M4</version>
14 14
     </parent>
15 15
 
16 16
     <dependencies>

+ 2
- 2
initial/build.gradle Vedi File

@@ -4,7 +4,7 @@ buildscript {
4 4
         mavenLocal()
5 5
     }
6 6
     dependencies {
7
-        classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M2")
7
+        classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M4")
8 8
     }
9 9
 }
10 10
 
@@ -24,7 +24,7 @@ repositories {
24 24
 }
25 25
 
26 26
 dependencies {
27
-    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M2")
27
+    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M4")
28 28
     testCompile("junit:junit:4.11")
29 29
 }
30 30
 

+ 1
- 1
initial/pom.xml Vedi File

@@ -10,7 +10,7 @@
10 10
     <parent>
11 11
         <groupId>org.springframework.boot</groupId>
12 12
         <artifactId>spring-boot-starter-parent</artifactId>
13
-        <version>0.5.0.M2</version>
13
+        <version>0.5.0.M4</version>
14 14
     </parent>
15 15
 
16 16
     <dependencies>