summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjimmy <jf2512@att.com>2018-12-20 15:18:47 -0500
committerTian Lee <TianL@amdocs.com>2018-12-21 11:19:21 +0000
commitf3b1077406fa3ca8b0d288c7ae19ae37d850cfcc (patch)
tree8c9ccf8ffb21a318ff4bc79231fa870228a6c44a
parentd51609df415b6483598c54a8fc27b66731690416 (diff)
Exclude tomcat from web starter
Issue-ID: AAI-2035 Change-Id: I19e326fefcfb60fff707dfb807fa91938efa3710 Signed-off-by: jimmy <jf2512@att.com>
-rw-r--r--pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index e9ed010..2f45b7e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -77,7 +77,17 @@
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-jetty</artifactId>
+ </dependency>
+ <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.onap.aai</groupId>