use hsql for unit tests

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1343714 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-05-29 13:29:06 +00:00
parent e87db98689
commit 315aa8b18f
1 changed files with 6 additions and 2 deletions

View File

@ -33,8 +33,12 @@
<rest.admin.pwd />
<test.useTomcat>false</test.useTomcat>
<jettyVersion>7.5.3.v20111011</jettyVersion>
<!--
<redbackTestJdbcUrl>jdbc:derby:memory:users-test;create=true</redbackTestJdbcUrl>
<redbackTestJdbcDriver>org.apache.derby.jdbc.EmbeddedDriver</redbackTestJdbcDriver>
-->
<redbackTestJdbcUrl>jdbc:hsqldb:mem:redback-test</redbackTestJdbcUrl>
<redbackTestJdbcDriver>org.hsqldb.jdbcDriver</redbackTestJdbcDriver>
</properties>
<dependencies>
@ -247,8 +251,8 @@
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>test</scope>
</dependency>