From: Lee, Tian (tl5884) Date: Fri, 4 Jan 2019 17:27:11 +0000 (+0000) Subject: Replace Jackson Spring-Boot dependencies with GSON X-Git-Tag: 2.1.10~4^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aaf%2Fcadi.git;a=commitdiff_plain;h=3e50733288604e3367b535c18963f28ba3dc7bc6 Replace Jackson Spring-Boot dependencies with GSON Submodule: FProxy service By default, Spring-Boot uses Jackson dependencies to marshall/unmarshall JSON. However, all current releases of Jackson contain security vulnerabilities. This change will configure Spring-Boot to use the GSON library instead of Jackson, which contains no security vulnerabilities. Change-Id: Ifd36d2ddb79fa5da9310e1872f8936ab7ae91073 Issue-ID: AAF-693 Signed-off-by: Lee, Tian (tl5884) --- 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 @@ org.springframework.boot spring-boot-starter-tomcat - + + org.springframework.boot + spring-boot-starter-json + + org.springframework.boot spring-boot-starter-test + + + com.google.code.gson + gson +