You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/11/25 18:05:45 UTC

svn commit: r479147 - /incubator/activemq/trunk/activemq-jpa-store/pom.xml

Author: chirino
Date: Sat Nov 25 09:05:44 2006
New Revision: 479147

URL: http://svn.apache.org/viewvc?view=rev&rev=479147
Log:
Added derby to dependencies so tests pass.

Modified:
    incubator/activemq/trunk/activemq-jpa-store/pom.xml

Modified: incubator/activemq/trunk/activemq-jpa-store/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-jpa-store/pom.xml?view=diff&rev=479147&r1=479146&r2=479147
==============================================================================
--- incubator/activemq/trunk/activemq-jpa-store/pom.xml (original)
+++ incubator/activemq/trunk/activemq-jpa-store/pom.xml Sat Nov 25 09:05:44 2006
@@ -52,6 +52,28 @@
       <artifactId>openjpa-persistence-jdbc</artifactId>
     </dependency>
 
+    <dependency>
+      <groupId>org.apache.derby</groupId>
+      <artifactId>derby</artifactId>
+      <optional>true</optional>
+    </dependency>
+
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-primitives</groupId>
+      <artifactId>commons-primitives</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-pool</groupId>
+      <artifactId>commons-pool</artifactId>
+      <optional>true</optional>
+    </dependency>
+
   </dependencies>
   
   <build>