|
|
@@ -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:
|