HIVE-17619: Exclude avatica-core.jar dependency from avatica shaded jar (Aihua Xu, reviewed by Yongzhi Chen)
Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/2216dad5 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/2216dad5 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/2216dad5 Branch: refs/heads/master Commit: 2216dad543c8a4f5ee732b386fb7c39ab48d0760 Parents: 8382008 Author: Aihua Xu <[email protected]> Authored: Wed Sep 27 09:51:28 2017 -0700 Committer: Aihua Xu <[email protected]> Committed: Fri Sep 29 10:58:25 2017 -0700 ---------------------------------------------------------------------- ql/pom.xml | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/2216dad5/ql/pom.xml ---------------------------------------------------------------------- diff --git a/ql/pom.xml b/ql/pom.xml index 3dfb421..59c4260 100644 --- a/ql/pom.xml +++ b/ql/pom.xml @@ -402,6 +402,10 @@ <artifactId>avatica</artifactId> <version>${avatica.version}</version> <exclusions> + <exclusion> + <groupId>org.apache.calcite.avatica</groupId> + <artifactId>avatica-core</artifactId> + </exclusion> <!-- hsqldb interferes with the use of derby as the default db in hive's use of datanucleus. -->
