Parcourir la source

Remove unused tags from initial build.gradle

Fixes gh-32
Dave Syer il y a 6 ans
Parent
révision
8186863cf1
1 fichiers modifiés avec 1 ajouts et 9 suppressions
  1. 1
    9
      initial/build.gradle

+ 1
- 9
initial/build.gradle Voir le fichier

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