Merge "Replace Jackson Spring-Boot dependencies with GSON"
authorJonathan Gathman <jonathan.gathman@att.com>
Thu, 10 Jan 2019 09:18:08 +0000 (09:18 +0000)
committerGerrit Code Review <gerrit@onap.org>
Thu, 10 Jan 2019 09:18:08 +0000 (09:18 +0000)
sidecar/fproxy/pom.xml

index 2608254..e0395b8 100644 (file)
                                        <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>