From 85d6832f78baa0ec67ba537bf965c6c05459c069 Mon Sep 17 00:00:00 2001 From: Oliver Bertuch Date: Wed, 7 Nov 2018 16:01:08 +0100 Subject: [PATCH] Add direct dependency to Jackson JSON-B and JSON-P in pom.xml. Needed because the transitive dependency from AWS has been used before. Thus this relates to #5274. As best practise, code should not rely on those deps but add a direct dependency. For the sake of working on #4260 (Java EE 8) at some point in the future, please remember to refactor the code using Jackson (and Gson) and remove it in favor of Java EE 8 native JSON-B and JSON-P support. --- pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pom.xml b/pom.xml index 20f24358d8c..a57ba972518 100644 --- a/pom.xml +++ b/pom.xml @@ -213,6 +213,16 @@ 2.2.4 compile + + + com.fasterxml.jackson.core + jackson-core + + + + com.fasterxml.jackson.core + jackson-databind + com.io7m.xom