VUB Stefan Seidel a écrit :
Quote from http://maven-plugins.sourceforge.net/ > Maven Plugins is a collection of plugins for Apache Maven 1.x
Ok then I have to use plugin from codehaus, thanks..
What is your dbunit configuration in your pom.xml?
This is my config : <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>dbunit-maven-plugin</artifactId> <!-- jar file that has the jdbc driver--> <dependencies> <dependency> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId> <version>8.2-504.jdbc3</version> </dependency> </dependencies> <!-- common configurations --> <configuration> <driver>org.postgresql.Driver</driver> <url>jdbc:postgresql://localhost:5432/gf_demo</url> <username>postgres</username> <password>postgres</password> </configuration> <!----> <executions> <execution> <phase>test</phase> <goals> <goal>operation</goal> </goals> <!--specific configurations--> <configuration> <type>INSERT</type> <src>dbUnit/000004_formulaire14000.xml</src> </configuration> </execution> </executions> </plugin> Greets --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]