- Using an in-memory db for testing

- removed dependency on hsqldb
- changed the description

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15451 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Adam Warski 2008-10-30 09:05:38 +00:00
parent f1c5c8a31a
commit da8c5a3a19
2 changed files with 2 additions and 11 deletions

View File

@ -1,7 +1,6 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
@ -16,7 +15,7 @@
<packaging>jar</packaging>
<name>Hibernate Envers</name>
<description>Support for entity historizing</description>
<description>Support for entity auditing</description>
<build>
<plugins>
@ -126,7 +125,6 @@
<artifactId>ant</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
@ -134,12 +132,6 @@
<scope>test</scope>
<classifier>jdk15</classifier>
</dependency>
<dependency>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>1.8.0.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
@ -197,5 +189,4 @@
<!-- for now, at least, lets aggregate them -->
<jbossenvers.reports.aggregate>true</jbossenvers.reports.aggregate>
</properties>
</project>

View File

@ -15,7 +15,7 @@
<property name="connection.password"></property>-->
<property name="dialect">org.hibernate.dialect.H2Dialect</property>
<property name="connection.url">jdbc:h2:/tmp/envers/test</property>
<property name="connection.url">jdbc:h2:mem:envers</property>
<property name="connection.driver_class">org.h2.Driver</property>
<property name="connection.username">sa</property>
<property name="connection.password"></property>