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 20:59:30 +0000
commit805010e7ad6dd4954a15f4960f19a9097096d642 (patch)
tree66204fc27dcc2dfd6925cb021bfaceb2c1e3806e
parent2e00109eede824494777b0c6dd4b16d5841329ca (diff)
Exclude tomcat from jersey starter3.0.1-ONAP1.3.2casablanca
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 a2997ab..8ec90aa 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>