You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by pr...@apache.org on 2019/03/09 02:22:15 UTC

[hive] branch master updated: HIVE-21415: Parallel build is failing, trying to download incorrect hadoop-hdfs-client version (Prasanth Jayachandran reviewed by Vineet Garg)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 6261b0d  HIVE-21415: Parallel build is failing, trying to download incorrect hadoop-hdfs-client version (Prasanth Jayachandran reviewed by Vineet Garg)
6261b0d is described below

commit 6261b0dc2b628ad23bf100ce2f3f14b688af384e
Author: Prasanth Jayachandran <pr...@apache.org>
AuthorDate: Fri Mar 8 18:21:47 2019 -0800

    HIVE-21415: Parallel build is failing, trying to download incorrect hadoop-hdfs-client version (Prasanth Jayachandran reviewed by Vineet Garg)
---
 hplsql/pom.xml           | 16 ++++++++++++++++
 kryo-registrator/pom.xml | 18 +++++++++++++++++-
 packaging/pom.xml        | 16 ++++++++++++++++
 3 files changed, 49 insertions(+), 1 deletion(-)

diff --git a/hplsql/pom.xml b/hplsql/pom.xml
index 4ad9ef9..11eb14f 100644
--- a/hplsql/pom.xml
+++ b/hplsql/pom.xml
@@ -70,6 +70,22 @@
       <optional>true</optional>
     </dependency>
     <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs-client</artifactId>
+      <version>${hadoop.version}</version>
+      <optional>true</optional>
+      <exclusions>
+        <exclusion>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-log4j12</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>commons-logging</groupId>
+          <artifactId>commons-logging</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>${junit.version}</version>
diff --git a/kryo-registrator/pom.xml b/kryo-registrator/pom.xml
index 477c40d..ea2eb65 100644
--- a/kryo-registrator/pom.xml
+++ b/kryo-registrator/pom.xml
@@ -44,6 +44,22 @@
       <version>${spark.version}</version>
       <optional>true</optional>
     </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs-client</artifactId>
+      <version>${hadoop.version}</version>
+      <optional>true</optional>
+      <exclusions>
+        <exclusion>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-log4j12</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>commons-logging</groupId>
+          <artifactId>commons-logging</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
   </dependencies>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/packaging/pom.xml b/packaging/pom.xml
index 202ae34..f640a05 100644
--- a/packaging/pom.xml
+++ b/packaging/pom.xml
@@ -302,6 +302,22 @@
       <artifactId>hive-kryo-registrator</artifactId>
       <version>${project.version}</version>
     </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs-client</artifactId>
+      <version>${hadoop.version}</version>
+      <optional>true</optional>
+      <exclusions>
+        <exclusion>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-log4j12</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>commons-logging</groupId>
+          <artifactId>commons-logging</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
   </dependencies>
 
 </project>