Re: [mojo-user] dbunit-maven-plugin and hsql

2007-11-19 Thread David J. Graff
Hey I've been running into some weird issues myself ... as far as your hsql database url you really should consider doing the following: jdbc:hsqldb:file:${project.build.dir}/dbunit/db;shutdown=true Also ... I would think about adding -Dshutdown=true Hypersonic made a change I think in the 1.8 s

Re: [mojo-user] dbunit-maven-plugin and hsql

2007-10-23 Thread leeand00
P.S. Here is the error that I get: $ mvn -Dformat=xml -Durl=jdbc:hsqldb:file:${basedir}/target/dbunit/db -Dusername=sa -Dpassword="" -Ddriv er="org.hsqldb.jdbcDriver" -Dtype="CLEAN_INSERT" -Dsrc=src/test/data/insert.xml dbunit:operation [INFO] Scanning for projects... [INFO] Searching repository

[mojo-user] dbunit-maven-plugin and hsql

2007-10-23 Thread leeand00
Hello, I am trying to use the DBUnit plugin for Maven2 to import some data into a file hsqldb database Versions: - dbunit-maven-plugin - 1.0-beta-1 - hsqldb - 1.8.0.7 (The idea being that when I run "mvn test-compile::" it will read in my insert.xml file and place it into the file database at