HIVE-16167 : Remove transitive dependency on mysql connector jar (Ashutosh Chauhan via Gunther Hagleitner)
Change-Id: Ic0d6cd277d91cea0a1bc210ee1dd46db40572f87 Signed-off-by: Ashutosh Chauhan <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/9f8e0900 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/9f8e0900 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/9f8e0900 Branch: refs/heads/branch-2.2 Commit: 9f8e0900dfae85023c9acfd211ad434c74c5170e Parents: 154c58b Author: Ashutosh Chauhan <[email protected]> Authored: Thu Mar 9 17:22:23 2017 -0800 Committer: Owen O'Malley <[email protected]> Committed: Tue Mar 28 15:27:58 2017 -0700 ---------------------------------------------------------------------- druid-handler/pom.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/9f8e0900/druid-handler/pom.xml ---------------------------------------------------------------------- diff --git a/druid-handler/pom.xml b/druid-handler/pom.xml index 38c8e98..0d27ac1 100644 --- a/druid-handler/pom.xml +++ b/druid-handler/pom.xml @@ -156,7 +156,13 @@ <groupId>io.druid.extensions</groupId> <artifactId>mysql-metadata-storage</artifactId> <version>${druid.version}</version> - </dependency> + <exclusions> + <exclusion> + <groupId>mysql</groupId> + <artifactId>mysql-connector-java</artifactId> + </exclusion> + </exclusions> + </dependency> <dependency> <groupId>io.druid.extensions</groupId> <artifactId>postgresql-metadata-storage</artifactId>
