You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2020/07/21 14:10:42 UTC

[zeppelin] branch branch-0.9 updated: [hotfix] add hadoop dependencies to spark dependency jar

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

zjffdu pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/branch-0.9 by this push:
     new 7442718  [hotfix] add hadoop dependencies to spark dependency jar
7442718 is described below

commit 7442718ec0a26c155b5bb33df9511ca6cbd5a0b7
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Tue Jul 21 21:45:53 2020 +0800

    [hotfix] add hadoop dependencies to spark dependency jar
---
 spark/spark-dependencies/pom.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/spark/spark-dependencies/pom.xml b/spark/spark-dependencies/pom.xml
index 1904e64..03d1cfa 100644
--- a/spark/spark-dependencies/pom.xml
+++ b/spark/spark-dependencies/pom.xml
@@ -133,6 +133,7 @@
       <groupId>org.apache.hadoop</groupId>
       <artifactId>hadoop-client</artifactId>
       <version>${hadoop.version}</version>
+      <scope>compile</scope>
     </dependency>
 
     <dependency>
@@ -145,6 +146,7 @@
       <groupId>org.apache.hadoop</groupId>
       <artifactId>hadoop-yarn-api</artifactId>
       <version>${yarn.version}</version>
+      <scope>compile</scope>
     </dependency>
 
   </dependencies>