diff options
author | jimmy <jf2512@att.com> | 2018-12-20 15:56:37 -0500 |
---|---|---|
committer | jimmy <jf2512@att.com> | 2018-12-20 16:04:40 -0500 |
commit | 64a76702a5d2b689abbdea00db9320f6f9ec036a (patch) | |
tree | 4594152b4150c9c4a080ddef9eabaeff02d9149c /pom.xml | |
parent | a575256d37d43d014442094d100571c66bd064eb (diff) |
Exclude tomcat from web starter
Issue-ID: AAI-2037
Change-Id: I2cbd6222845e574c6de1cce7733a52707dca26b9
Signed-off-by: jimmy <jf2512@att.com>
Diffstat (limited to 'pom.xml')
-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> |