aboutsummaryrefslogtreecommitdiff
path: root/external/docker-integration-tests/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'external/docker-integration-tests/pom.xml')
-rw-r--r--external/docker-integration-tests/pom.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/external/docker-integration-tests/pom.xml b/external/docker-integration-tests/pom.xml
index 1764aa9465..17fd7d781c 100644
--- a/external/docker-integration-tests/pom.xml
+++ b/external/docker-integration-tests/pom.xml
@@ -34,6 +34,13 @@
<sbt.project.name>docker-integration-tests</sbt.project.name>
</properties>
+ <repositories>
+ <repository>
+ <id>db2</id>
+ <url>https://app.camunda.com/nexus/content/repositories/public/</url>
+ </repository>
+ </repositories>
+
<dependencies>
<dependency>
<groupId>com.spotify</groupId>
@@ -180,5 +187,28 @@
</exclusions>
</dependency>
<!-- End Jersey dependencies -->
+
+ <!-- DB2 JCC driver manual installation instructions
+
+ You can build this datasource if you:
+ 1) have the DB2 artifacts installed in a local repo and supply the URL:
+ -Dmaven.repo.drivers=http://my.local.repo
+
+ 2) have a copy of the DB2 JCC driver and run the following commands :
+ mvn install:install-file -Dfile=${path to db2jcc4.jar} \
+ -DgroupId=com.ibm.db2 \
+ -DartifactId=db2jcc4 \
+ -Dversion=10.5 \
+ -Dpackaging=jar
+
+ Note: IBM DB2 JCC driver is available for download at
+ http://www-01.ibm.com/support/docview.wss?uid=swg21363866
+ -->
+ <dependency>
+ <groupId>com.ibm.db2.jcc</groupId>
+ <artifactId>db2jcc4</artifactId>
+ <version>10.5.0.5</version>
+ <type>jar</type>
+ </dependency>
</dependencies>
</project>