Re: How to make self contained database dependant unit tests in maven 2?

2005-11-09 Thread Eric Pugh
Take a look at some of the in memory Java databases. We use Hibernate with Hypersonic in test, and then switch to MSSQLServer in production very successfully. Eric On Nov 9, 2005, at 5:21 PM, Brian E. Fox wrote: We currently have a system that uses JDO (Kodo implementation) for our

Re: How to make self contained database dependant unit tests in maven 2?

2005-11-09 Thread Chris Richardson
I use HSQL DB (http://hsqldb.org/) for testing with both Kodo JDO and Hibernate. It works well and is very fast. This is what I have in my pom.xml dependency groupIdhsqldb/groupId artifactIdhsqldb/artifactId version1.7.2.2 http://1.7.2.2/version scopetest/scope /dependency Chris --

RE: How to make self contained database dependant unit tests in maven 2?

2005-11-09 Thread Brian E. Fox
To: Maven Users List Subject: Re: How to make self contained database dependant unit tests in maven 2? I use HSQL DB (http://hsqldb.org/) for testing with both Kodo JDO and Hibernate. It works well and is very fast. This is what I have in my pom.xml dependency groupIdhsqldb/groupId

Re: How to make self contained database dependant unit tests in maven 2?

2005-11-09 Thread Eduardo Rocha
Subject: Re: How to make self contained database dependant unit tests in maven 2? I use HSQL DB (http://hsqldb.org/) for testing with both Kodo JDO and Hibernate. It works well and is very fast. This is what I have in my pom.xml dependency groupIdhsqldb/groupId artifactIdhsqldb

RE: How to make self contained database dependant unit tests in maven 2?

2005-11-09 Thread Brian E. Fox
[mailto:[EMAIL PROTECTED] Sent: Wednesday, November 09, 2005 2:27 PM To: Maven Users List Subject: Re: How to make self contained database dependant unit tests in maven 2? Testing with another DB than the production one has its disadvantages too. There is a nice discussion about it here: http

Re: How to make self contained database dependant unit tests in maven 2?

2005-11-09 Thread Chris Richardson
- http://chris-richardson.blog-city.com -Original Message- From: Chris Richardson [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 09, 2005 2:06 PM To: Maven Users List Subject: Re: How to make self contained database dependant unit tests in maven 2? I use HSQL DB (http

Re: How to make self contained database dependant unit tests in maven 2?

2005-11-09 Thread Michael Heuer
Chris Richardson wrote: On 11/9/05, Brian E. Fox [EMAIL PROTECTED] wrote: Funny you should mention that. I just stumbled upon this myself. Do you need to execute anything before hand to setup the hsqldb or do you just point the jdbc connection at it? You configure Hibernate/Kodo JDO

RE: How to make self contained database dependant unit tests in maven 2?

2005-11-09 Thread Brian E. Fox
Users List Subject: Re: How to make self contained database dependant unit tests in maven 2? Chris Richardson wrote: On 11/9/05, Brian E. Fox [EMAIL PROTECTED] wrote: Funny you should mention that. I just stumbled upon this myself. Do you need to execute anything before hand to setup