summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Gathman <jonathan.gathman@att.com>2019-01-10 09:18:08 +0000
committerGerrit Code Review <gerrit@onap.org>2019-01-10 09:18:08 +0000
commitd348d122d5880540a0f6e48182efdb0fbcf0c5d0 (patch)
tree41f543510517504c2d67593e89d99bc432e664d0
parent965dac7a82d2962a9c6d0c1dfc1d52f4b7e05916 (diff)
parent3e50733288604e3367b535c18963f28ba3dc7bc6 (diff)
Merge "Replace Jackson Spring-Boot dependencies with GSON"
-rw-r--r--sidecar/fproxy/pom.xml11
1 files changed, 10 insertions, 1 deletions
diff --git a/sidecar/fproxy/pom.xml b/sidecar/fproxy/pom.xml
index 2608254..e0395b8 100644
--- a/sidecar/fproxy/pom.xml
+++ b/sidecar/fproxy/pom.xml
@@ -70,13 +70,22 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
- </exclusions>
+ <exclusion>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-json</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
+
+ <dependency>
+ <groupId>com.google.code.gson</groupId>
+ <artifactId>gson</artifactId>
+ </dependency>
</dependencies>
<build>