HIVE-13134: JDBC: JDBC Standalone should not be in the lib dir by default (Gopal V, reviewed by Vaibhav Gumashta)
Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/c1c1a4af Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/c1c1a4af Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/c1c1a4af Branch: refs/heads/llap Commit: c1c1a4afe6305ccd12589e8f53c13d343b8b9c6f Parents: e44198f Author: Gopal V <[email protected]> Authored: Thu Feb 25 22:26:50 2016 -0800 Committer: Gopal V <[email protected]> Committed: Thu Feb 25 22:26:50 2016 -0800 ---------------------------------------------------------------------- packaging/src/main/assembly/bin.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/c1c1a4af/packaging/src/main/assembly/bin.xml ---------------------------------------------------------------------- diff --git a/packaging/src/main/assembly/bin.xml b/packaging/src/main/assembly/bin.xml index a5f3975..aaf5c0e 100644 --- a/packaging/src/main/assembly/bin.xml +++ b/packaging/src/main/assembly/bin.xml @@ -44,9 +44,19 @@ <exclude>org.slf4j:*</exclude> <exclude>log4j:*</exclude> <exclude>commons-configuration:commons-configuration</exclude> + <exclude>org.apache.hive:hive-jdbc:*:standalone</exclude> </excludes> </dependencySet> <dependencySet> + <outputDirectory>jdbc/</outputDirectory> + <unpack>false</unpack> + <useProjectArtifact>false</useProjectArtifact> + <useStrictFiltering>true</useStrictFiltering> + <includes> + <include>org.apache.hive:hive-jdbc:*:standalone</include> + </includes> + </dependencySet> + <dependencySet> <outputDirectory>hcatalog/share/hcatalog</outputDirectory> <unpack>false</unpack> <useProjectArtifact>false</useProjectArtifact>
