You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2018/01/17 09:05:55 UTC

kylin git commit: KYLIN-3129 exclude derby from kylin classpath

Repository: kylin
Updated Branches:
  refs/heads/master 89fffc23b -> a6189a606


KYLIN-3129 exclude derby from kylin classpath


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

Branch: refs/heads/master
Commit: a6189a6069589a05db5a99bd2bc48242e67cc34d
Parents: 89fffc2
Author: shaofengshi <sh...@apache.org>
Authored: Wed Jan 17 17:05:50 2018 +0800
Committer: shaofengshi <sh...@apache.org>
Committed: Wed Jan 17 17:05:50 2018 +0800

----------------------------------------------------------------------
 build/bin/find-hive-dependency.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/a6189a60/build/bin/find-hive-dependency.sh
----------------------------------------------------------------------
diff --git a/build/bin/find-hive-dependency.sh b/build/bin/find-hive-dependency.sh
index 96a7647..2567d51 100755
--- a/build/bin/find-hive-dependency.sh
+++ b/build/bin/find-hive-dependency.sh
@@ -149,7 +149,7 @@ then
 else
     hive_lib_dir="$HIVE_LIB"
 fi
-hive_lib=`find -L ${hive_lib_dir} -name '*.jar' ! -name '*calcite*' ! -name '*jackson-datatype-joda*' -printf '%p:' | sed 's/:$//'`
+hive_lib=`find -L ${hive_lib_dir} -name '*.jar' ! -name '*calcite*' ! -name '*jackson-datatype-joda*' ! -name '*derby*' -printf '%p:' | sed 's/:$//'`
 
 validateDirectory ${hive_conf_path}
 checkFileExist ${hive_lib}