Exclude tomcat from jersey starter 26/75026/2
authorjimmy <jf2512@att.com>
Thu, 20 Dec 2018 20:23:40 +0000 (15:23 -0500)
committerJames Forsyth <jf2512@att.com>
Thu, 20 Dec 2018 21:02:48 +0000 (21:02 +0000)
Issue-ID: AAI-2036
Change-Id: Iab0924049d1ab69a5c9d8613071746133b395f7c
Signed-off-by: jimmy <jf2512@att.com>
pom.xml

diff --git a/pom.xml b/pom.xml
index 04b8a14..65c8d40 100644 (file)
--- a/pom.xml
+++ b/pom.xml
           <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>
                </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>