diff options
author | jimmy <jf2512@att.com> | 2018-12-20 15:23:40 -0500 |
---|---|---|
committer | James Forsyth <jf2512@att.com> | 2018-12-20 20:59:30 +0000 |
commit | 805010e7ad6dd4954a15f4960f19a9097096d642 (patch) | |
tree | 66204fc27dcc2dfd6925cb021bfaceb2c1e3806e | |
parent | 2e00109eede824494777b0c6dd4b16d5841329ca (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.xml | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -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> |