aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjimmy <jf2512@att.com>2018-12-20 15:23:40 -0500
committerJames Forsyth <jf2512@att.com>2018-12-20 21:02:48 +0000
commitf683bb625823de20ae1085753265ddd72febcb74 (patch)
tree3331d41ed51a71f15adb8d704e92169ecc6bba87
parent13bfd89c03c83e08651aedd26c490d8774ae2362 (diff)
Exclude tomcat from jersey starter
Issue-ID: AAI-2036 Change-Id: Iab0924049d1ab69a5c9d8613071746133b395f7c Signed-off-by: jimmy <jf2512@att.com>
-rw-r--r--pom.xml18
1 files changed, 15 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 04b8a14..65c8d40 100644
--- a/pom.xml
+++ b/pom.xml
@@ -148,9 +148,15 @@
<version>20180130</version>
</dependency>
- <dependency>
+ <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-tomcat</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
@@ -170,8 +176,14 @@
</dependency>
<dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-jersey</artifactId>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-jersey</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-tomcat</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>