|
@@ -25,15 +25,7 @@ sourceCompatibility = 1.8
|
25
|
25
|
targetCompatibility = 1.8
|
26
|
26
|
|
27
|
27
|
dependencies {
|
28
|
|
- // tag::jetty[]
|
29
|
|
- compile("org.springframework.boot:spring-boot-starter-web") {
|
30
|
|
- exclude module: "spring-boot-starter-tomcat"
|
31
|
|
- }
|
32
|
|
- compile("org.springframework.boot:spring-boot-starter-jetty")
|
33
|
|
- // end::jetty[]
|
34
|
|
- // tag::actuator[]
|
35
|
|
- compile("org.springframework.boot:spring-boot-starter-actuator")
|
36
|
|
- // end::actuator[]
|
|
28
|
+ compile("org.springframework.boot:spring-boot-starter-web")
|
37
|
29
|
testCompile("junit:junit")
|
38
|
30
|
}
|
39
|
31
|
|