From 8d50f9b14b70e5ed38b4103815c4c784e27617ec Mon Sep 17 00:00:00 2001 From: Hans Van Akelyen Date: Thu, 9 Nov 2023 10:56:12 +0100 Subject: [PATCH] Remove Vertica driver, fixes #3363 --- assemblies/lib-jdbc/pom.xml | 6 ------ docker/integration-tests/Dockerfile.unit-tests | 3 +++ 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/assemblies/lib-jdbc/pom.xml b/assemblies/lib-jdbc/pom.xml index d1aca9571d3..85aa8e46100 100644 --- a/assemblies/lib-jdbc/pom.xml +++ b/assemblies/lib-jdbc/pom.xml @@ -43,7 +43,6 @@ 2.1.0.19 3.14.1 3.43.0.0 - 23.3.0-0 @@ -115,11 +114,6 @@ sqlite-jdbc ${sqlite.version} - - com.vertica.jdbc - vertica-jdbc - ${vertica.jdbc.version} - diff --git a/docker/integration-tests/Dockerfile.unit-tests b/docker/integration-tests/Dockerfile.unit-tests index fa0615c7ce0..a717a07a921 100644 --- a/docker/integration-tests/Dockerfile.unit-tests +++ b/docker/integration-tests/Dockerfile.unit-tests @@ -86,6 +86,9 @@ RUN unzip -q ${DEPLOYMENT_PATH}/hop.zip -d ${DEPLOYMENT_PATH} \ && cd ${DEPLOYMENT_PATH}/hop \ && ./hop-conf.sh --generate-fat-jar=/tmp/hop-fatjar.jar +# Download the Vertica JDBC driver +RUN wget -c https://repo1.maven.org/maven2/com/vertica/jdbc/vertica-jdbc/23.4.0-0/vertica-jdbc-23.4.0-0.jar -O /opt/hop/lib/jdbc/vertica-jdbc-23.4.0-0.jar + # make volume available so that hop pipeline and workflow files can be provided easily VOLUME ["/files"] USER ${JENKINS_USER}