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

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


The following commit(s) were added to refs/heads/master by this push:
     new fb03da3  [LIVY-635][BUILD] Fix travis fail to build by excluding the 
dependency of hbase
fb03da3 is described below

commit fb03da30c5ae9a45faf56e95911f6821c4f7b2d2
Author: runzhiwang <runzhiw...@tencent.com>
AuthorDate: Thu Aug 15 15:14:04 2019 +0800

    [LIVY-635][BUILD] Fix travis fail to build by excluding the dependency of 
hbase
    
    ## What changes were proposed in this pull request?
    
    Fix travis fail to build by excluding the dependency of hbase.
    
    ## How was this patch tested?
    
    existed UT and IT.
    
    Author: runzhiwang <runzhiw...@tencent.com>
    
    Closes #198 from runzhiwang/LIVY-635.
---
 integration-test/pom.xml    |  4 ++++
 thriftserver/client/pom.xml | 12 ++++++++++++
 thriftserver/server/pom.xml |  8 ++++++++
 3 files changed, 24 insertions(+)

diff --git a/integration-test/pom.xml b/integration-test/pom.xml
index 6329422..803f5a7 100644
--- a/integration-test/pom.xml
+++ b/integration-test/pom.xml
@@ -318,6 +318,10 @@
               <groupId>org.slf4j</groupId>
               <artifactId>slf4j-log4j12</artifactId>
             </exclusion>
+            <exclusion>
+              <groupId>org.apache.hbase</groupId>
+              <artifactId>*</artifactId>
+            </exclusion>
           </exclusions>
         </dependency>
 
diff --git a/thriftserver/client/pom.xml b/thriftserver/client/pom.xml
index c3e420b..757953d 100644
--- a/thriftserver/client/pom.xml
+++ b/thriftserver/client/pom.xml
@@ -34,11 +34,23 @@
       <groupId>org.apache.hive</groupId>
       <artifactId>hive-jdbc</artifactId>
       <version>${hive.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.hbase</groupId>
+          <artifactId>*</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.hive</groupId>
       <artifactId>hive-beeline</artifactId>
       <version>${hive.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.hbase</groupId>
+          <artifactId>*</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
   </dependencies>
   <build>
diff --git a/thriftserver/server/pom.xml b/thriftserver/server/pom.xml
index 4a0f267..fe17f96 100644
--- a/thriftserver/server/pom.xml
+++ b/thriftserver/server/pom.xml
@@ -39,6 +39,10 @@
           <groupId>tomcat</groupId>
           <artifactId>*</artifactId>
         </exclusion>
+        <exclusion>
+          <groupId>org.apache.hbase</groupId>
+          <artifactId>*</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
     <dependency>
@@ -137,6 +141,10 @@
           <groupId>org.slf4j</groupId>
           <artifactId>slf4j-log4j12</artifactId>
         </exclusion>
+        <exclusion>
+          <groupId>org.apache.hbase</groupId>
+          <artifactId>*</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
   </dependencies>

Reply via email to