Author: aadamchik
Date: Wed Nov 27 18:38:43 2013
New Revision: 1546155
URL: http://svn.apache.org/r1546155
Log:
fixing derby tests
(in fact any DB other than hsqldb will be affected by this,
as in the absence of hsql profile , hsql jar is not added to the maven build,
and non-core modules need it as they are tested on hsql regardless of the
core modules DB)
Modified:
cayenne/main/trunk/cayenne-lifecycle/pom.xml
Modified: cayenne/main/trunk/cayenne-lifecycle/pom.xml
URL:
http://svn.apache.org/viewvc/cayenne/main/trunk/cayenne-lifecycle/pom.xml?rev=1546155&r1=1546154&r2=1546155&view=diff
==============================================================================
--- cayenne/main/trunk/cayenne-lifecycle/pom.xml (original)
+++ cayenne/main/trunk/cayenne-lifecycle/pom.xml Wed Nov 27 18:38:43 2013
@@ -53,6 +53,11 @@
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>hsqldb</groupId>
+ <artifactId>hsqldb</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
<plugins>