Ok, some hints:
we use
<version>1.0-beta-1</version>
and I do not see a <format> tag.

Stefan

Julien FOROT wrote:
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]


--
best regards,

Stefan Seidel
software developer
________________________
VUB Printmedia GmbH
Chopinstraße 4
D-04103 Leipzig
Germany
tel.    +49 (341) 9 60 50 07
fax.    +49 (341) 9 60 50 92
mail.   [EMAIL PROTECTED]
web.    www.vub.de

HRB Köln 24015
UStID DE 122 649 251
GF Dr. Achim Preuss Neudorf,
Dr. Christian Preuss Neudorf

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to