diff options
author | jimmy <jf2512@att.com> | 2018-12-20 14:52:32 -0500 |
---|---|---|
committer | James Forsyth <jf2512@att.com> | 2018-12-20 20:16:52 +0000 |
commit | 6f032db2fc2df0a7fb4de9a09868dd7578139e0c (patch) | |
tree | 66b02c0ca2218626d7e6a72b4c91c37ae7a15112 | |
parent | 500af870f37e33b4a9108c74a12c3310fee11d60 (diff) |
Exclude tomcat from jersey starter
Issue-ID: AAI-2033
Change-Id: Id379bfe8c26168cbc0b1905d842fc9cc31638430
Signed-off-by: jimmy <jf2512@att.com>
-rw-r--r-- | champ-service/pom.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/champ-service/pom.xml b/champ-service/pom.xml index 434da83..503a780 100644 --- a/champ-service/pom.xml +++ b/champ-service/pom.xml @@ -92,6 +92,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> |