summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLee, Tian (tl5884) <TianL@amdocs.com>2019-03-28 13:03:40 +0000
committerLee, Tian (tl5884) <TianL@amdocs.com>2019-03-28 13:03:40 +0000
commit83509f42fef269f44ce23be7ffa3e84ca0f569bc (patch)
tree764c6f4e2123d71ce15ea7b199fafd6350a11c53
parent510b19db6546d63449742255b7da1b4631e6b028 (diff)
Exclude Tomcat dependencies in favour of Jetty
Change-Id: Ib42a3c24a2f7be0905ad33fa10b9f1ce68d6b0b2 Issue-ID: AAI-2254 Signed-off-by: Lee, Tian (tl5884) <TianL@amdocs.com>
-rw-r--r--pom.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 14262a2..9b2585f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -83,9 +83,17 @@
<artifactId>logback-classic</artifactId>
<groupId>ch.qos.logback</groupId>
</exclusion>
+ <exclusion>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-tomcat</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-jetty</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
@@ -212,6 +220,12 @@
<groupId>org.onap.aai.aai-common</groupId>
<artifactId>aai-schema-ingest</artifactId>
<version>${version.aai.aai-schema-ingest}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-tomcat</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>