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 ch...@apache.org on 2015/08/14 08:43:05 UTC

svn commit: r1695822 - /jackrabbit/oak/trunk/oak-run/pom.xml

Author: chetanm
Date: Fri Aug 14 06:43:05 2015
New Revision: 1695822

URL: http://svn.apache.org/r1695822
Log:
OAK-3188 - Make dependency on commons-dbcp as optional in oak-core

As commons-dbcp is optional in oak-core we need to explicitly list it here for it to be included in oak-run

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

Modified: jackrabbit/oak/trunk/oak-run/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-run/pom.xml?rev=1695822&r1=1695821&r2=1695822&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-run/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-run/pom.xml Fri Aug 14 06:43:05 2015
@@ -282,6 +282,11 @@
       <version>${project.version}</version>
     </dependency>
     <dependency>
+      <groupId>commons-dbcp</groupId>
+      <artifactId>commons-dbcp</artifactId>
+      <version>1.4</version>
+    </dependency>
+    <dependency>
       <groupId>com.h2database</groupId>
       <artifactId>h2</artifactId>
       <version>${h2.version}</version>