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>
|
2018-06-27 07:04:00 +01:00
|
|
|
<parent>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>kemitix-parent</artifactId>
|
2020-03-19 07:27:42 +00:00
|
|
|
<version>5.3.0</version>
|
2018-06-27 07:04:00 +01:00
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
2017-09-15 19:13:11 +01:00
|
|
|
|
|
|
|
<artifactId>mon</artifactId>
|
2021-03-12 20:28:38 +00:00
|
|
|
<version>2.3.0</version>
|
2017-10-19 19:38:15 +01:00
|
|
|
|
2018-06-30 15:11:26 +01:00
|
|
|
<name>Mon</name>
|
2021-03-14 19:49:46 +00:00
|
|
|
<description>Wrapper, TypeAlias, Maybe, Result, Tree, Lazy, Either and Combinators for Java.
|
|
|
|
</description>
|
2018-06-30 15:11:26 +01:00
|
|
|
|
|
|
|
<issueManagement>
|
2018-07-21 22:50:32 +01:00
|
|
|
<url>https://github.com/kemitix/mon/issues</url>
|
|
|
|
<system>github Issues</system>
|
2018-06-30 15:11:26 +01:00
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
2018-07-21 22:50:32 +01:00
|
|
|
<url>https://github.com/kemitix/mon</url>
|
|
|
|
<connection>scm:git:https://github.com/kemitix/mon.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:kemitix/mon.git</developerConnection>
|
2018-06-30 15:11:26 +01:00
|
|
|
</scm>
|
|
|
|
|
2018-07-21 22:50:32 +01:00
|
|
|
<url>https://github.com/kemitix/mon</url>
|
2018-06-30 15:11:26 +01:00
|
|
|
|
|
|
|
<inceptionYear>2017</inceptionYear>
|
|
|
|
|
2017-10-19 19:38:15 +01:00
|
|
|
<properties>
|
2018-02-28 15:00:00 +00:00
|
|
|
<java.version>1.8</java.version>
|
2021-02-05 05:18:11 +00:00
|
|
|
<junit.version>5.7.1</junit.version>
|
2021-02-23 05:21:29 +00:00
|
|
|
<mockito.version>3.8.0</mockito.version>
|
2021-01-25 05:19:54 +00:00
|
|
|
<assertj.version>3.19.0</assertj.version>
|
2021-04-02 06:18:45 +01:00
|
|
|
<lombok.version>1.18.20</lombok.version>
|
2021-03-29 06:34:56 +01:00
|
|
|
<tiles-maven-plugin.version>2.20</tiles-maven-plugin.version>
|
2021-03-14 15:15:50 +00:00
|
|
|
<kemitix-maven-tiles.version>3.0.1</kemitix-maven-tiles.version>
|
2017-12-24 08:03:45 +00:00
|
|
|
<digraph-dependency.basePackage>net.kemitix.mon</digraph-dependency.basePackage>
|
2021-03-14 15:15:50 +00:00
|
|
|
<kemitix-checkstyle.version>5.5.0</kemitix-checkstyle.version>
|
2021-03-12 05:17:34 +00:00
|
|
|
<pitest-maven-plugin.version>1.6.4</pitest-maven-plugin.version>
|
2021-03-22 05:26:16 +00:00
|
|
|
<pitest-junit5-plugin.version>0.14</pitest-junit5-plugin.version>
|
2021-03-14 15:20:48 +00:00
|
|
|
<spotbugs.version>4.2.2</spotbugs.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>
|
2018-10-12 20:42:11 +01:00
|
|
|
|
2017-09-15 19:13:11 +01:00
|
|
|
<dependency>
|
2018-10-12 20:42:11 +01:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
|
|
<version>${mockito.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>
|
2020-03-20 07:17:29 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
<artifactId>spotbugs-annotations</artifactId>
|
|
|
|
<version>${spotbugs.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-09-15 19:13:11 +01:00
|
|
|
</dependencies>
|
|
|
|
|
2018-10-12 20:42:11 +01:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit</groupId>
|
|
|
|
<artifactId>junit-bom</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
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>
|
2021-03-14 15:15:50 +00:00
|
|
|
<tile>net.kemitix.tiles:maven-plugins:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:compiler-jdk-lts:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:pmd:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:testing:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:spotbugs:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:coverage:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:pitest:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<tile>net.kemitix.tiles:pmd-strict:${kemitix-maven-tiles.version}</tile>
|
2018-02-28 15:00:00 +00:00
|
|
|
<tile>net.kemitix.checkstyle:tile:${kemitix-checkstyle.version}</tile>
|
2017-12-24 08:03:45 +00:00
|
|
|
</tiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin><!-- tiles-maven-plugin -->
|
2018-10-12 20:42:11 +01:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.pitest</groupId>
|
|
|
|
<artifactId>pitest-maven</artifactId>
|
|
|
|
<version>${pitest-maven-plugin.version}</version>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.pitest</groupId>
|
|
|
|
<artifactId>pitest-junit5-plugin</artifactId>
|
|
|
|
<version>${pitest-junit5-plugin.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2017-12-24 08:03:45 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2017-09-15 19:13:11 +01:00
|
|
|
</project>
|