diff options
author | jimmy <jf2512@att.com> | 2018-12-20 15:56:37 -0500 |
---|---|---|
committer | James Forsyth <jf2512@att.com> | 2018-12-20 21:05:42 +0000 |
commit | 4ab14055e6131ff5c513b24192e84b952340ced9 (patch) | |
tree | 37214cb3dc9140e18c8434e437eafaa99328e99a | |
parent | 06576aee86306e15f01796b50f323939a6d1b531 (diff) |
Exclude tomcat from web starter
Issue-ID: AAI-2037
Change-Id: I2cbd6222845e574c6de1cce7733a52707dca26b9
Signed-off-by: jimmy <jf2512@att.com>
-rw-r--r-- | pom.xml | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -109,7 +109,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> |