You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2017/06/05 05:23:53 UTC

[65/67] [abbrv] kylin git commit: minor, add guava dependency to module server-base

minor, add guava dependency to module server-base


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/b6b71e86
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/b6b71e86
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/b6b71e86

Branch: refs/heads/master
Commit: b6b71e86b87982d0c986999122e4d8eb96187f3d
Parents: f6cdd62
Author: Cheng Wang <ch...@kyligence.io>
Authored: Sun Jun 4 20:24:25 2017 +0800
Committer: liyang-gmt8 <li...@apache.org>
Committed: Sun Jun 4 21:56:06 2017 +0800

----------------------------------------------------------------------
 server-base/pom.xml | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/b6b71e86/server-base/pom.xml
----------------------------------------------------------------------
diff --git a/server-base/pom.xml b/server-base/pom.xml
index c7247a5..8110027 100644
--- a/server-base/pom.xml
+++ b/server-base/pom.xml
@@ -63,6 +63,16 @@
             <artifactId>kylin-source-kafka</artifactId>
         </dependency>
 
+        <!--
+            The Hadoop provided guava could disappoint calcite's demand. 
+            E.g. the provided could be: /usr/hdp/2.4.0.0-169/hadoop/lib/guava-11.0.2.jar - com/google/common/collect/ImmutableSortedMap.class
+            While calcite requires guava 14.0 now.
+         -->
+        <dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+            <scope>compile</scope>
+        </dependency>
 
         <dependency>
             <groupId>net.sf.ehcache</groupId>