2017-04-21 10:49:24 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-08-25 15:15:33 +01:00
|
|
|
<parent>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>kemitix-parent</artifactId>
|
2018-10-10 22:52:47 +01:00
|
|
|
<version>5.2.0</version>
|
2018-08-25 15:15:33 +01:00
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>conditional</artifactId>
|
|
|
|
<version>DEV-SNAPSHOT</version>
|
|
|
|
|
2017-04-21 10:49:24 +01:00
|
|
|
<properties>
|
2018-07-18 20:12:05 +01:00
|
|
|
<kemitix-checkstyle.version>4.1.1</kemitix-checkstyle.version>
|
2017-04-21 10:49:24 +01:00
|
|
|
<junit.version>4.12</junit.version>
|
2019-09-02 17:13:40 +01:00
|
|
|
<assertj.version>3.13.2</assertj.version>
|
2019-06-20 10:08:17 +01:00
|
|
|
<tiles-maven-plugin.version>2.15</tiles-maven-plugin.version>
|
2019-03-03 20:17:32 +00:00
|
|
|
<kemitix-maven-tiles.version>2.2.0</kemitix-maven-tiles.version>
|
2019-09-11 08:50:57 +01:00
|
|
|
<lombok.version>1.18.10</lombok.version>
|
2017-04-21 10:49:24 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2018-02-23 18:36:28 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2017-04-21 10:49:24 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${assertj.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2018-02-23 18:36:28 +00:00
|
|
|
<groupId>io.repaint.maven</groupId>
|
|
|
|
<artifactId>tiles-maven-plugin</artifactId>
|
|
|
|
<version>${tiles-maven-plugin.version}</version>
|
|
|
|
<extensions>true</extensions>
|
2017-08-26 16:45:00 +01:00
|
|
|
<configuration>
|
2018-02-23 18:36:28 +00:00
|
|
|
<tiles>
|
2018-10-10 22:43:07 +01:00
|
|
|
<tile>net.kemitix.tiles:all:${kemitix-maven-tiles.version}</tile>
|
2018-02-23 18:36:28 +00:00
|
|
|
<tile>net.kemitix.checkstyle:tile:${kemitix-checkstyle.version}</tile>
|
|
|
|
</tiles>
|
2017-08-26 16:45:00 +01:00
|
|
|
</configuration>
|
2017-04-21 14:42:28 +01:00
|
|
|
</plugin>
|
2017-04-21 10:49:24 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|