Skip to content

Commit a663397

Browse files
author
Matt Raible
authored
Merge pull request #12 from sdeleuze/spring-boot-tomcat-embed-programmatic
Use tomcat-embed-programmatic in Spring Boot sample
2 parents 1f7aff0 + a196fe7 commit a663397

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

spring-boot/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,21 @@
2626
<dependency>
2727
<groupId>org.springframework.boot</groupId>
2828
<artifactId>spring-boot-starter-web</artifactId>
29+
<exclusions>
30+
<exclusion>
31+
<groupId>org.apache.tomcat.embed</groupId>
32+
<artifactId>tomcat-embed-core</artifactId>
33+
</exclusion>
34+
<exclusion>
35+
<groupId>org.apache.tomcat.embed</groupId>
36+
<artifactId>tomcat-embed-websocket</artifactId>
37+
</exclusion>
38+
</exclusions>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.apache.tomcat.experimental</groupId>
42+
<artifactId>tomcat-embed-programmatic</artifactId>
43+
<version>${tomcat.version}</version>
2944
</dependency>
3045
<dependency>
3146
<groupId>org.springframework.experimental</groupId>

0 commit comments

Comments
 (0)