From 6dfff89f7a31087c03f62de03ac952974ec30505 Mon Sep 17 00:00:00 2001 From: Mark Grover Date: Fri, 20 Nov 2015 15:46:24 -0800 Subject: [PATCH 1/2] Fixing httpclient and httpcore depedency issues related to docker-client --- docker-integration-tests/pom.xml | 12 ++++++++++++ pom.xml | 16 ++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/docker-integration-tests/pom.xml b/docker-integration-tests/pom.xml index dee0c4aa37ae8..5552602766547 100644 --- a/docker-integration-tests/pom.xml +++ b/docker-integration-tests/pom.xml @@ -71,6 +71,18 @@ + + org.apache.httpcomponents + httpclient + 4.5 + test + + + org.apache.httpcomponents + httpcore + 4.4.1 + test + com.google.guava diff --git a/pom.xml b/pom.xml index ad849112ce76c..a807bf84922c0 100644 --- a/pom.xml +++ b/pom.xml @@ -810,6 +810,22 @@ guava com.google.guava + + org.apache.httpcomponents + httpclient + + + org.apache.httpcomponents + httpcore + + + commons-logging + httpclient + + + commons-logging + commons-logging + From 73a3182e2e723bd69c64498ef260aac96f419af0 Mon Sep 17 00:00:00 2001 From: Mark Grover Date: Tue, 8 Dec 2015 19:00:07 -0800 Subject: [PATCH 2/2] Adding MySQL and PostgreSQL drivers as dependencies for use in docker tests. Also, adding the same driver depedencies in dependency management section of root pom so they can be shared amongst various modules (e.g. sql) --- docker-integration-tests/pom.xml | 10 ++++++++++ pom.xml | 12 ++++++++++++ sql/core/pom.xml | 2 -- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/docker-integration-tests/pom.xml b/docker-integration-tests/pom.xml index 5552602766547..39d3f344615e1 100644 --- a/docker-integration-tests/pom.xml +++ b/docker-integration-tests/pom.xml @@ -121,6 +121,16 @@ ${project.version} test + + mysql + mysql-connector-java + test + + + org.postgresql + postgresql + test +