I did not know that Maven plugins were started as new process. I finally gave up with dbunit plugin and used dbunit itself from my test classes and it works well. Thanks a lot for your answer anyway.
Olivier 2008/2/28, VUB Stefan Seidel <[EMAIL PROTECTED]>: > > Hi Olivier, > > the hsqldb memory mode means that the database is being shut down > everytime the process that created it terminates. Since maven runs > plugins isolated from each other, there is no way to access an in-memory > database that was created in one plugin in another plugin. So it is > better to create a file database in the /target/ direcotry. > > Stefan > > >
