Ver código fonte

Upgrade to Spring Boot 0.5.0.M2

Greg Turnquist 13 anos atrás
pai
commit
86a8f15fe6
6 arquivos alterados com 16 adições e 16 exclusões
  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 Ver arquivo

@@ -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.BUILD-SNAPSHOT") {
136
+    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M2") {
137 137
         exclude module: "spring-boot-starter-tomcat"
138 138
     }
139
-    compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.BUILD-SNAPSHOT")
139
+    compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.M2")
140 140
 ```
141 141
 
142 142
 If you are using Maven, the changes look like this:
@@ -239,7 +239,7 @@ If you are building a web site for your business, you probably need to add some
239 239
 Add this to your build file's list of dependencies:
240 240
 
241 241
 ```groovy
242
-    compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.BUILD-SNAPSHOT")
242
+    compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.M2")
243 243
 ```
244 244
 
245 245
 If you are using Maven, add this to your list of dependencies:

+ 5
- 5
README.md Ver arquivo

@@ -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.BUILD-SNAPSHOT")
67
+        classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M2")
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.BUILD-SNAPSHOT")
87
+    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M2")
88 88
     testCompile("junit:junit:4.11")
89 89
 }
90 90
 
@@ -250,10 +250,10 @@ What if you prefer Jetty over Tomcat? Jetty and Tomcat are both compliant servle
250 250
 Change your `build.gradle` to exclude Tomcat then add Jetty to the list of dependencies:
251 251
 
252 252
 ```groovy
253
-    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.BUILD-SNAPSHOT") {
253
+    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M2") {
254 254
         exclude module: "spring-boot-starter-tomcat"
255 255
     }
256
-    compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.BUILD-SNAPSHOT")
256
+    compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.M2")
257 257
 ```
258 258
 
259 259
 If you are using Maven, the changes look like this:
@@ -386,7 +386,7 @@ If you are building a web site for your business, you probably need to add some
386 386
 Add this to your build file's list of dependencies:
387 387
 
388 388
 ```groovy
389
-    compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.BUILD-SNAPSHOT")
389
+    compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.M2")
390 390
 ```
391 391
 
392 392
 If you are using Maven, add this to your list of dependencies:

+ 4
- 4
complete/build.gradle Ver arquivo

@@ -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.BUILD-SNAPSHOT")
7
+        classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M2")
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.BUILD-SNAPSHOT") {
27
+    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M2") {
28 28
         exclude module: "spring-boot-starter-tomcat"
29 29
     }
30
-    compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.BUILD-SNAPSHOT")
31
-    compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.BUILD-SNAPSHOT")
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")
32 32
     testCompile("junit:junit:4.11")
33 33
 }
34 34
 

+ 1
- 1
complete/pom.xml Ver arquivo

@@ -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.BUILD-SNAPSHOT</version>
13
+        <version>0.5.0.M2</version>
14 14
     </parent>
15 15
 
16 16
     <dependencies>

+ 2
- 2
initial/build.gradle Ver arquivo

@@ -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.BUILD-SNAPSHOT")
7
+        classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M2")
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.BUILD-SNAPSHOT")
27
+    compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M2")
28 28
     testCompile("junit:junit:4.11")
29 29
 }
30 30
 

+ 1
- 1
initial/pom.xml Ver arquivo

@@ -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.BUILD-SNAPSHOT</version>
13
+        <version>0.5.0.M2</version>
14 14
     </parent>
15 15
 
16 16
     <dependencies>