HIVE-16167 : Remove transitive dependency on mysql connector jar (Ashutosh Chauhan via Gunther Hagleitner)
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/870ac1a7 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/870ac1a7 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/870ac1a7 Branch: refs/heads/hive-14535 Commit: 870ac1a7cfc642e4f84afaf42f70c9dda2186802 Parents: 7071db4 Author: Ashutosh Chauhan <[email protected]> Authored: Thu Mar 9 17:22:23 2017 -0800 Committer: Ashutosh Chauhan <[email protected]> Committed: Fri Mar 10 10:04:48 2017 -0800 ---------------------------------------------------------------------- druid-handler/pom.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/870ac1a7/druid-handler/pom.xml ---------------------------------------------------------------------- diff --git a/druid-handler/pom.xml b/druid-handler/pom.xml index ca5028d..fc70185 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>
