36 lines
1.0 KiB
XML
36 lines
1.0 KiB
XML
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<artifactId>dbunit</artifactId>
|
||
|
|
<version>1.0</version>
|
||
|
|
<name>dbunit</name>
|
||
|
|
|
||
|
|
<parent>
|
||
|
|
<groupId>com.baeldung</groupId>
|
||
|
|
<artifactId>parent-modules</artifactId>
|
||
|
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.dbunit</groupId>
|
||
|
|
<artifactId>dbunit</artifactId>
|
||
|
|
<version>${dbunit.version}</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.h2database</groupId>
|
||
|
|
<artifactId>h2</artifactId>
|
||
|
|
<version>1.4.197</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<!-- testing -->
|
||
|
|
<dbunit.version>2.6.0</dbunit.version>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
</project>
|