2020-09-18 17:59:33 +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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>kemitix-parent</artifactId>
|
|
|
|
<version>5.3.0</version>
|
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>fontface</artifactId>
|
2020-09-18 19:33:32 +01:00
|
|
|
<version>1.0.0</version>
|
2020-09-18 17:59:33 +01:00
|
|
|
|
2020-09-18 18:02:15 +01:00
|
|
|
<properties>
|
2021-03-29 17:22:19 +01:00
|
|
|
<tiles-maven-plugin.version>2.20</tiles-maven-plugin.version>
|
2020-09-18 18:02:15 +01:00
|
|
|
<kemitix-tiles.version>2.10.0</kemitix-tiles.version>
|
2021-04-02 07:04:16 +01:00
|
|
|
<lombok.version>1.18.20</lombok.version>
|
2021-02-05 07:19:55 +00:00
|
|
|
<junit-jupiter.version>5.7.1</junit-jupiter.version>
|
2021-04-08 09:09:43 +01:00
|
|
|
<mockito-junit-jupiter.version>3.9.0</mockito-junit-jupiter.version>
|
2021-01-25 09:27:11 +00:00
|
|
|
<assertj-core.version>3.19.0</assertj-core.version>
|
2020-09-18 18:02:15 +01:00
|
|
|
</properties>
|
|
|
|
|
2020-09-18 18:09:49 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2020-09-18 18:31:31 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<version>${junit-jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
|
|
<version>${mockito-junit-jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${assertj-core.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-09-18 18:09:49 +01:00
|
|
|
</dependencies>
|
|
|
|
|
2020-09-18 18:02:15 +01: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>
|
|
|
|
<tile>net.kemitix.tiles:maven-plugins:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:compiler-jdk-lts:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:huntbugs:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:pmd:${kemitix-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:testing:${kemitix-tiles.version}</tile>
|
2020-09-18 18:45:18 +01:00
|
|
|
<!--<tile>net.kemitix.tiles:pitest:${kemitix-tiles.version}</tile>-->
|
2020-09-18 18:02:15 +01:00
|
|
|
</tiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2020-09-18 17:59:33 +01:00
|
|
|
</project>
|