diff options
author | Lee, Tian (tl5884) <TianL@amdocs.com> | 2019-03-28 13:03:40 +0000 |
---|---|---|
committer | Lee, Tian (tl5884) <TianL@amdocs.com> | 2019-03-28 13:03:40 +0000 |
commit | 83509f42fef269f44ce23be7ffa3e84ca0f569bc (patch) | |
tree | 764c6f4e2123d71ce15ea7b199fafd6350a11c53 | |
parent | 510b19db6546d63449742255b7da1b4631e6b028 (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.xml | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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> |