aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjimmy <jf2512@att.com>2018-12-20 11:23:13 -0500
committerjimmy <jf2512@att.com>2018-12-20 11:23:14 -0500
commit4e579fc1bca9fdc42d294b21541cfe80cb0c60a2 (patch)
tree43ced741c02c6a1abf8a2d84532f3a7c12737a97
parent8cc8606b7e4c0514f24a6d1103390302213342e5 (diff)
Exclude tomcat from jersey starter
Issue-ID: AAI-2030 Change-Id: I341346b39c791ce75bbe5693f791f9acef0ec8d2 Signed-off-by: jimmy <jf2512@att.com>
-rw-r--r--pom.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index b96b2c8..fd8ed5b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -315,7 +315,7 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
- <exclusion>
+ <exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
@@ -332,6 +332,12 @@
<dependency>
<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>
<groupId>org.springframework.boot</groupId>