HHH-5607 - Add derby profile
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20758 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
2a7be6d0d1
commit
066ea8d667
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue