[hibernate-commits] Hibernate SVN: r20758 - core/trunk/parent.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Sep 30 09:15:56 EDT 2010


Author: steve.ebersole at jboss.com
Date: 2010-09-30 09:15:55 -0400 (Thu, 30 Sep 2010)
New Revision: 20758

Modified:
   core/trunk/parent/pom.xml
Log:
HHH-5607 - Add derby profile


Modified: core/trunk/parent/pom.xml
===================================================================
--- core/trunk/parent/pom.xml	2010-09-30 10:15:56 UTC (rev 20757)
+++ core/trunk/parent/pom.xml	2010-09-30 13:15:55 UTC (rev 20758)
@@ -613,6 +613,28 @@
                 <jdbc.isolation/>
             </properties>
         </profile>
+
+        <profile>
+            <id>derby</id>
+            <dependencies>
+                <dependency>
+                    <groupId>org.apache.derby</groupId>
+                    <artifactId>derby</artifactId>
+                    <!-- 10.5.3.0 has a bad pom -->
+                    <version>10.5.3.0_1</version>
+                    <scope>test</scope>
+                </dependency>
+            </dependencies>
+            <properties>
+                <db.dialect>org.hibernate.dialect.DerbyDialect</db.dialect>
+                <jdbc.driver>org.apache.derby.jdbc.EmbeddedDriver</jdbc.driver>
+                <jdbc.url>jdbc:derby:${pom.build.outputDirectory}/test/derby;create=true</jdbc.url>
+                <jdbc.user>sa</jdbc.user>
+                <jdbc.pass/>
+                <jdbc.isolation/>
+            </properties>
+        </profile>
+
         <!--
             ###################################################################
             Profiles naming db instances in the Red Hat QA/QE lab



More information about the hibernate-commits mailing list