You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2013/12/18 11:54:42 UTC

svn commit: r1551906 - /manifoldcf/branches/CONNECTORS-829/framework/core/pom.xml

Author: kwright
Date: Wed Dec 18 10:54:41 2013
New Revision: 1551906

URL: http://svn.apache.org/r1551906
Log:
Fix broken maven build

Modified:
    manifoldcf/branches/CONNECTORS-829/framework/core/pom.xml

Modified: manifoldcf/branches/CONNECTORS-829/framework/core/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-829/framework/core/pom.xml?rev=1551906&r1=1551905&r2=1551906&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-829/framework/core/pom.xml (original)
+++ manifoldcf/branches/CONNECTORS-829/framework/core/pom.xml Wed Dec 18 10:54:41 2013
@@ -92,5 +92,23 @@
       <artifactId>zookeeper</artifactId>
       <version>${zookeeper.version}</version>
     </dependency>
+    <dependency>
+      <groupId>postgresql</groupId>
+      <artifactId>postgresql</artifactId>
+      <version>${postgresql.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.hsqldb</groupId>
+      <artifactId>hsqldb</artifactId>
+      <version>${hsqldb.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.derby</groupId>
+      <artifactId>derby</artifactId>
+      <version>${derby.version}</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 </project>