2017-09-15 19:13:11 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>kemitix-parent</artifactId>
|
2017-10-19 22:38:23 +01:00
|
|
|
<version>3.2.4</version>
|
2017-09-15 19:13:11 +01:00
|
|
|
</parent>
|
|
|
|
<artifactId>mon</artifactId>
|
2017-12-10 17:02:11 +00:00
|
|
|
<version>0.4.0</version>
|
2017-10-19 19:38:15 +01:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<assertj-core.version>3.8.0</assertj-core.version>
|
|
|
|
</properties>
|
2017-09-15 19:13:11 +01:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2017-10-19 19:38:15 +01:00
|
|
|
<version>${junit.version}</version>
|
2017-09-15 19:13:11 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
2017-10-19 19:38:15 +01:00
|
|
|
<version>${assertj-core.version}</version>
|
2017-09-15 19:13:11 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|