2019-03-17 22:24:10 +03:00
|
|
|
<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>
|
2020-03-29 11:37:19 +02:00
|
|
|
<properties>
|
|
|
|
|
<h2.version>1.4.200</h2.version>
|
|
|
|
|
|
|
|
|
|
<maven-compiler-plugin.target>1.8</maven-compiler-plugin.target>
|
|
|
|
|
<maven-compiler-plugin.source>1.8</maven-compiler-plugin.source>
|
|
|
|
|
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
|
|
|
|
|
|
|
|
|
|
<assertj-core.version>3.14.0</assertj-core.version>
|
|
|
|
|
<dbunit.version>2.6.0</dbunit.version>
|
|
|
|
|
</properties>
|
2020-03-29 18:16:45 +02:00
|
|
|
|
2019-03-17 22:24:10 +03:00
|
|
|
<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>
|
2020-03-29 11:37:19 +02:00
|
|
|
<version>${h2.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
|
<version>${assertj-core.version}</version>
|
2019-03-17 22:24:10 +03:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
2020-03-29 11:37:19 +02:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>${maven-compiler-plugin.source}</source>
|
|
|
|
|
<target>${maven-compiler-plugin.target}</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2019-03-17 22:24:10 +03:00
|
|
|
|
|
|
|
|
</project>
|