You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by kg...@apache.org on 2019/09/17 13:08:01 UTC

[hive] 01/02: HIVE-22059: hive-exec jar doesn't contain (fasterxml) jackson library (Zoltan Haindrich reviewed by Laszlo Bodor)

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

kgyrtkirk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git

commit 5c7adaba54a3dcb8269709c758c5f9656a3a8744
Author: Zoltan Haindrich <ki...@rxd.hu>
AuthorDate: Tue Sep 17 14:59:19 2019 +0200

    HIVE-22059: hive-exec jar doesn't contain (fasterxml) jackson library (Zoltan Haindrich reviewed by Laszlo Bodor)
    
    Signed-off-by: Zoltan Haindrich <ki...@rxd.hu>
---
 ql/pom.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/ql/pom.xml b/ql/pom.xml
index b48b36a..8fbe71d 100644
--- a/ql/pom.xml
+++ b/ql/pom.xml
@@ -987,6 +987,9 @@
                   <include>io.airlift:aircompressor</include>
                   <include>org.codehaus.jackson:jackson-core-asl</include>
                   <include>org.codehaus.jackson:jackson-mapper-asl</include>
+                  <include>com.fasterxml.jackson.core:jackson-core</include>
+                  <include>com.fasterxml.jackson.core:jackson-annotations</include>
+                  <include>com.fasterxml.jackson.core:jackson-databind</include>
                   <include>com.google.guava:guava</include>
                   <include>net.sf.opencsv:opencsv</include>
                   <include>org.apache.hive:hive-spark-client</include>
@@ -996,6 +999,10 @@
                   <include>org.apache.orc:orc-tools</include>
                   <include>joda-time:joda-time</include>
                   <include>com.google.re2j:re2j</include>
+                  <include>io.dropwizard.metrics:metrics-core</include>
+                  <include>io.dropwizard.metrics:metrics-jvm</include>
+                  <include>io.dropwizard.metrics:metrics-json</include>
+                  <include>com.zaxxer:HikariCP</include>
                 </includes>
               </artifactSet>
               <relocations>
@@ -1008,6 +1015,18 @@
                   <shadedPattern>org.apache.hive.org.objenesis</shadedPattern>
                 </relocation>
                 <relocation>
+                  <pattern>com.fasterxml.jackson</pattern>
+                  <shadedPattern>org.apache.hive.com.fasterxml.jackson</shadedPattern>
+                </relocation>
+                <relocation>
+                  <pattern>com.codahale.metrics</pattern>
+                  <shadedPattern>org.apache.hive.com.codahale.metrics</shadedPattern>
+                </relocation>
+                <relocation>
+                  <pattern>com.zaxxer.hikari</pattern>
+                  <shadedPattern>org.apache.hive.com.zaxxer.hikari</shadedPattern>
+                </relocation>
+                <relocation>
                   <pattern>com.google.guava</pattern>
                   <shadedPattern>org.apache.hive.com.google.guava</shadedPattern>
                 </relocation>