aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjimmy <jf2512@att.com>2018-12-20 15:02:27 -0500
committerjimmy <jf2512@att.com>2018-12-20 15:02:31 -0500
commita9b88265c2e66103d251ff7d26655f701cd13266 (patch)
treeb93e03fd8d2fe1e58b4de8346f6fce4a4280ee46
parentd057fa4c753bfa1cdcc887ab631fe7d1fb9dd3e6 (diff)
Exclude tomcat from jersey starter
Issue-ID: AAI-2034 Change-Id: Ib3083ab636dfb3afa45aee7a3c5e4a49120e60f3 Signed-off-by: jimmy <jf2512@att.com>
-rw-r--r--pom.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 41220b9..16d43ef 100644
--- a/pom.xml
+++ b/pom.xml
@@ -57,6 +57,12 @@ limitations under the License.
<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>
<groupId>org.springframework.boot</groupId>
@@ -75,6 +81,12 @@ limitations under the License.
<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>