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>
|
2018-02-28 15:00:00 +00:00
|
|
|
<version>5.1.0</version>
|
2017-12-24 08:03:45 +00:00
|
|
|
<relativePath/>
|
2017-09-15 19:13:11 +01:00
|
|
|
</parent>
|
|
|
|
<artifactId>mon</artifactId>
|
2017-12-10 18:58:44 +00:00
|
|
|
<version>0.5.0-SNAPSHOT</version>
|
2017-10-19 19:38:15 +01:00
|
|
|
|
|
|
|
<properties>
|
2018-02-28 15:00:00 +00:00
|
|
|
<java.version>1.8</java.version>
|
2017-10-19 19:38:15 +01:00
|
|
|
<junit.version>4.12</junit.version>
|
2018-02-28 19:58:56 +00:00
|
|
|
<assertj.version>3.9.1</assertj.version>
|
2018-02-28 19:44:52 +00:00
|
|
|
<lombok.version>1.16.20</lombok.version>
|
2017-12-24 08:03:45 +00:00
|
|
|
<tiles-maven-plugin.version>2.10</tiles-maven-plugin.version>
|
2018-02-28 15:00:00 +00:00
|
|
|
<kemitix-tiles.version>0.5.2</kemitix-tiles.version>
|
|
|
|
<!-- kemitix-tiles provides surefire 2.20.1 which is broken - downgrade surefire to 2.20 -->
|
|
|
|
<maven-surefire-plugin.version>2.20</maven-surefire-plugin.version>
|
2017-12-24 08:03:45 +00:00
|
|
|
<digraph-dependency.basePackage>net.kemitix.mon</digraph-dependency.basePackage>
|
2018-02-28 15:00:00 +00:00
|
|
|
<kemitix-checkstyle.version>4.0.1</kemitix-checkstyle.version>
|
2017-10-19 19:38:15 +01:00
|
|
|
</properties>
|
2017-09-15 19:13:11 +01:00
|
|
|
|
|
|
|
<dependencies>
|
2017-12-24 08:03:45 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-09-15 19:13:11 +01:00
|
|
|
<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>
|
2018-02-28 19:58:56 +00:00
|
|
|
<version>${assertj.version}</version>
|
2017-09-15 19:13:11 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2017-12-24 08:03:45 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>io.repaint.maven</groupId>
|
|
|
|
<artifactId>tiles-maven-plugin</artifactId>
|
|
|
|
<version>${tiles-maven-plugin.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<tiles>
|
2018-02-28 15:00:00 +00:00
|
|
|
<tile>net.kemitix.tiles:all:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.checkstyle:tile:${kemitix-checkstyle.version}</tile>
|
2017-12-24 08:03:45 +00:00
|
|
|
</tiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin><!-- tiles-maven-plugin -->
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2017-09-15 19:13:11 +01:00
|
|
|
</project>
|