|
@@ -14,10 +14,28 @@
|
14
|
14
|
</parent>
|
15
|
15
|
|
16
|
16
|
<dependencies>
|
|
17
|
+ <!-- tag::jetty[] -->
|
17
|
18
|
<dependency>
|
18
|
19
|
<groupId>org.springframework.boot</groupId>
|
19
|
20
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
21
|
+ <exclusions>
|
|
22
|
+ <exclusion>
|
|
23
|
+ <groupId>org.springframework.boot</groupId>
|
|
24
|
+ <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
25
|
+ </exclusion>
|
|
26
|
+ </exclusions>
|
20
|
27
|
</dependency>
|
|
28
|
+ <dependency>
|
|
29
|
+ <groupId>org.springframework.boot</groupId>
|
|
30
|
+ <artifactId>spring-boot-starter-jetty</artifactId>
|
|
31
|
+ </dependency>
|
|
32
|
+ <!-- end::jetty[] -->
|
|
33
|
+ <!-- tag::actuator[] -->
|
|
34
|
+ <dependency>
|
|
35
|
+ <groupId>org.springframework.boot</groupId>
|
|
36
|
+ <artifactId>spring-boot-starter-actuator</artifactId>
|
|
37
|
+ </dependency>
|
|
38
|
+ <!-- end::actuator[] -->
|
21
|
39
|
</dependencies>
|
22
|
40
|
|
23
|
41
|
<properties>
|