diff options
author | jimmy <jf2512@att.com> | 2018-12-20 15:02:27 -0500 |
---|---|---|
committer | jimmy <jf2512@att.com> | 2018-12-20 15:02:31 -0500 |
commit | a9b88265c2e66103d251ff7d26655f701cd13266 (patch) | |
tree | b93e03fd8d2fe1e58b4de8346f6fce4a4280ee46 /pom.xml | |
parent | d057fa4c753bfa1cdcc887ab631fe7d1fb9dd3e6 (diff) |
Exclude tomcat from jersey starter
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
@@ -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> |