You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by aa...@apache.org on 2008/01/08 12:29:55 UTC

svn commit: r609937 - in /cayenne/main/trunk: framework/cayenne-jdk1.5-unpublished/pom.xml pom.xml

Author: aadamchik
Date: Tue Jan  8 03:29:47 2008
New Revision: 609937

URL: http://svn.apache.org/viewvc?rev=609937&view=rev
Log:
CAY-884 Add support for H2 Databas: maven setup

Modified:
    cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/pom.xml
    cayenne/main/trunk/pom.xml

Modified: cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/pom.xml
URL: http://svn.apache.org/viewvc/cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/pom.xml?rev=609937&r1=609936&r2=609937&view=diff
==============================================================================
--- cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/pom.xml (original)
+++ cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/pom.xml Tue Jan  8 03:29:47 2008
@@ -113,6 +113,12 @@
 			<artifactId>hsqldb</artifactId>
 			<scope>test</scope>
 		</dependency>
+		
+		<dependency>
+			<groupId>com.h2database</groupId>
+			<artifactId>h2</artifactId>
+			<scope>test</scope>
+		</dependency>
 
 		<dependency>
 			<groupId>velocity</groupId>

Modified: cayenne/main/trunk/pom.xml
URL: http://svn.apache.org/viewvc/cayenne/main/trunk/pom.xml?rev=609937&r1=609936&r2=609937&view=diff
==============================================================================
--- cayenne/main/trunk/pom.xml (original)
+++ cayenne/main/trunk/pom.xml Tue Jan  8 03:29:47 2008
@@ -324,13 +324,20 @@
 				<artifactId>hsqldb</artifactId>
 				<version>1.8.0.4</version>
 			</dependency>
+			
+			<dependency>
+    			<groupId>com.h2database</groupId>
+    			<artifactId>h2</artifactId>
+    			<version>1.0.63</version>
+    			<scope>test</scope>
+			</dependency>
 
-                        <dependency>
+			<dependency>
 				<groupId>org.apache.derby</groupId>
 				<artifactId>derby</artifactId>
 				<version>10.2.2.0</version>
 				<scope>test</scope>
-                        </dependency>
+			</dependency>
 
 			<dependency>
 				<groupId>com.caucho</groupId>