You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by re...@apache.org on 2019/01/04 07:45:19 UTC

svn commit: r1850319 - /jackrabbit/oak/trunk/oak-parent/pom.xml

Author: reschke
Date: Fri Jan  4 07:45:19 2019
New Revision: 1850319

URL: http://svn.apache.org/viewvc?rev=1850319&view=rev
Log:
OAK-7970: RDB*Store: add profile for DB2 11.1 JDBC driver

Modified:
    jackrabbit/oak/trunk/oak-parent/pom.xml

Modified: jackrabbit/oak/trunk/oak-parent/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-parent/pom.xml?rev=1850319&r1=1850318&r2=1850319&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-parent/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-parent/pom.xml Fri Jan  4 07:45:19 2019
@@ -1105,6 +1105,21 @@
       </dependencies>
     </profile>
     <profile>
+      <!-- requires local copy of IBM DB2 JDBC drivers deployed to Maven repo-->
+      <!-- for instance:
+        mvn install:install-file -Dfile=db2jcc4.jar -Dpackaging=jar\
+          -DgroupId=com.ibm.db2 -DartifactId=db2 -Dversion=4.25.13
+       -->
+      <id>rdb-db2-11</id>
+      <dependencies>
+        <dependency>
+          <groupId>com.ibm.db2</groupId>
+          <artifactId>db2</artifactId>
+          <version>4.25.13</version>
+        </dependency>
+      </dependencies>
+    </profile>
+    <profile>
       <id>coverage</id>
       <properties>
         <skip.coverage>false</skip.coverage>