Quellcode durchsuchen

Upgrade to Spring Boot 0.5.0.M4

Greg Turnquist vor 13 Jahren
Ursprung
Commit
f7be1b6628
6 geänderte Dateien mit 16 neuen und 16 gelöschten Zeilen
  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 Datei anzeigen

133
 Change your `build.gradle` to exclude Tomcat then add Jetty to the list of dependencies:
133
 Change your `build.gradle` to exclude Tomcat then add Jetty to the list of dependencies:
134
 
134
 
135
 ```groovy
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
         exclude module: "spring-boot-starter-tomcat"
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
 If you are using Maven, the changes look like this:
142
 If you are using Maven, the changes look like this:
237
 Add this to your build file's list of dependencies:
237
 Add this to your build file's list of dependencies:
238
 
238
 
239
 ```groovy
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
 If you are using Maven, add this to your list of dependencies:
243
 If you are using Maven, add this to your list of dependencies:

+ 5
- 5
README.md Datei anzeigen

64
         mavenLocal()
64
         mavenLocal()
65
     }
65
     }
66
     dependencies {
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
 }
84
 }
85
 
85
 
86
 dependencies {
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
     testCompile("junit:junit:4.11")
88
     testCompile("junit:junit:4.11")
89
 }
89
 }
90
 
90
 
249
 Change your `build.gradle` to exclude Tomcat then add Jetty to the list of dependencies:
249
 Change your `build.gradle` to exclude Tomcat then add Jetty to the list of dependencies:
250
 
250
 
251
 ```groovy
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
         exclude module: "spring-boot-starter-tomcat"
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
 If you are using Maven, the changes look like this:
258
 If you are using Maven, the changes look like this:
383
 Add this to your build file's list of dependencies:
383
 Add this to your build file's list of dependencies:
384
 
384
 
385
 ```groovy
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
 If you are using Maven, add this to your list of dependencies:
389
 If you are using Maven, add this to your list of dependencies:

+ 4
- 4
complete/build.gradle Datei anzeigen

4
         mavenLocal()
4
         mavenLocal()
5
     }
5
     }
6
     dependencies {
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
 }
24
 }
25
 
25
 
26
 dependencies {
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
         exclude module: "spring-boot-starter-tomcat"
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
     testCompile("junit:junit:4.11")
32
     testCompile("junit:junit:4.11")
33
 }
33
 }
34
 
34
 

+ 1
- 1
complete/pom.xml Datei anzeigen

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

+ 2
- 2
initial/build.gradle Datei anzeigen

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

+ 1
- 1
initial/pom.xml Datei anzeigen

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