diff options
author | jimmy <jf2512@att.com> | 2018-12-20 15:02:27 -0500 |
---|---|---|
committer | James Forsyth <jf2512@att.com> | 2018-12-20 20:03:51 +0000 |
commit | ef5834e9182f107c0986ee9cea4c248a7ef6efd7 (patch) | |
tree | 5531c6b64d88c8bfd904623dfa26bc7780aa8306 /pom.xml | |
parent | b09ca0ea9020672d6a792325a7fa95b1355fb167 (diff) |
Exclude tomcat from jersey starter3.0.1-ONAP1.3.2casablanca
Issue-ID: AAI-2034
Change-Id: Ib3083ab636dfb3afa45aee7a3c5e4a49120e60f3
Signed-off-by: jimmy <jf2512@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -56,6 +56,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> @@ -74,6 +80,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> |