Browse Source

Remove unused tags from initial build.gradle

Fixes gh-32
Dave Syer 6 years ago
parent
commit
8186863cf1
1 changed files with 1 additions and 9 deletions
  1. 1
    9
      initial/build.gradle

+ 1
- 9
initial/build.gradle View File

25
 targetCompatibility = 1.8
25
 targetCompatibility = 1.8
26
 
26
 
27
 dependencies {
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
     testCompile("junit:junit")
29
     testCompile("junit:junit")
38
 }
30
 }
39
 
31