Explorar el Código

Remove unused tags from initial build.gradle

Fixes gh-32
Dave Syer hace 6 años
padre
commit
8186863cf1
Se han modificado 1 ficheros con 1 adiciones y 9 borrados
  1. 1
    9
      initial/build.gradle

+ 1
- 9
initial/build.gradle Ver fichero

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