You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ak...@apache.org on 2019/06/20 22:02:51 UTC

[incubator-pinot] branch master updated: [TE] Resolve runtime jackson conflicts - Upgrade and pin jackson version (#4347)

This is an automated email from the ASF dual-hosted git repository.

akshayrai09 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 8ed5200  [TE] Resolve runtime jackson conflicts - Upgrade and pin jackson version (#4347)
8ed5200 is described below

commit 8ed5200e1d9a77cd341273a621e829c1f99e99ad
Author: Akshay Rai <ak...@gmail.com>
AuthorDate: Thu Jun 20 15:02:46 2019 -0700

    [TE] Resolve runtime jackson conflicts - Upgrade and pin jackson version (#4347)
---
 thirdeye/pom.xml                | 17 ++++++++++++++++-
 thirdeye/thirdeye-pinot/pom.xml | 15 +++++++++++++++
 2 files changed, 31 insertions(+), 1 deletion(-)

diff --git a/thirdeye/pom.xml b/thirdeye/pom.xml
index dd13876..3de5786 100644
--- a/thirdeye/pom.xml
+++ b/thirdeye/pom.xml
@@ -40,7 +40,7 @@
     <dropwizard-auth.version>1.3.12</dropwizard-auth.version>
     <dropwizard.redirect.bundle.version>1.3.5</dropwizard.redirect.bundle.version>
     <jetty.version>9.4.12.v20180830</jetty.version>
-    <jackson.version>2.8.3</jackson.version>
+    <jackson.version>2.9.9</jackson.version>
     <mysql.connector.version>5.1.39</mysql.connector.version>
     <quartz.version>2.2.1</quartz.version>
     <httpclient.version>4.5.2</httpclient.version>
@@ -258,6 +258,21 @@
       <!-- jackson -->
       <dependency>
         <groupId>com.fasterxml.jackson.core</groupId>
+        <artifactId>jackson-core</artifactId>
+        <version>${jackson.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>com.fasterxml.jackson.core</groupId>
+        <artifactId>jackson-annotations</artifactId>
+        <version>${jackson.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>com.fasterxml.jackson.core</groupId>
+        <artifactId>jackson-databind</artifactId>
+        <version>${jackson.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>com.fasterxml.jackson.core</groupId>
         <artifactId>jackson-core-asl</artifactId>
         <version>${jackson.version}</version>
       </dependency>
diff --git a/thirdeye/thirdeye-pinot/pom.xml b/thirdeye/thirdeye-pinot/pom.xml
index 1da38dc..75537dc 100644
--- a/thirdeye/thirdeye-pinot/pom.xml
+++ b/thirdeye/thirdeye-pinot/pom.xml
@@ -75,6 +75,21 @@
       <groupId>io.dropwizard-bundles</groupId>
       <artifactId>dropwizard-redirect-bundle</artifactId>
     </dependency>
+
+    <!-- Pin jackson version and omit from third party dependencies-->
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+
     <dependency>
       <groupId>org.apache.pinot</groupId>
       <artifactId>pinot-api</artifactId>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org