Просмотр исходного кода

Remove unused tags from initial build.gradle

Fixes gh-32
Dave Syer 6 лет назад
Родитель
Сommit
8186863cf1
1 измененных файлов: 1 добавлений и 9 удалений
  1. 1
    9
      initial/build.gradle

+ 1
- 9
initial/build.gradle Просмотреть файл

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