You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2020/07/28 02:25:22 UTC

[incubator-iotdb] branch master updated: fix the third party dependencies to make license compatible with apache-license 2.0 (#1569)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 289cfb0  fix the third party dependencies to make license compatible with apache-license 2.0 (#1569)
289cfb0 is described below

commit 289cfb0561555b71947736e803a3c67190054e63
Author: HouliangQi <ne...@163.com>
AuthorDate: Tue Jul 28 10:25:00 2020 +0800

    fix the third party dependencies to make license compatible with apache-license 2.0 (#1569)
    
    * fix the third party dependencies to make license compatible
---
 hive-connector/pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/hive-connector/pom.xml b/hive-connector/pom.xml
index c3e5543..a1023b1 100644
--- a/hive-connector/pom.xml
+++ b/hive-connector/pom.xml
@@ -43,6 +43,20 @@
         <dependency>
             <groupId>org.apache.hive</groupId>
             <artifactId>hive-serde</artifactId>
+            <exclusions>
+                <!-- hive-serde 2.8.4 uses orc-core 1.3.2, 
+                which is under incompatible license. So, exclude it.-->
+                <exclusion>
+                    <groupId>org.apache.orc</groupId>
+                    <artifactId>orc-core</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <!-- force upgrade the dependency of hive-serde-->
+        <dependency>
+            <groupId>org.apache.orc</groupId>
+            <artifactId>orc-core</artifactId>
+            <version>1.6.0</version>
         </dependency>
         <dependency>
             <groupId>org.apache.hive</groupId>