2018-05-11 16:48:23 +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>
|
|
|
|
|
|
|
|
<groupId>net.kemitix</groupId>
|
2018-05-11 18:09:54 +01:00
|
|
|
<artifactId>gitdb</artifactId>
|
2018-08-30 20:57:42 +01:00
|
|
|
<version>DEV-SNAPSHOT</version>
|
2018-05-11 16:48:23 +01:00
|
|
|
|
|
|
|
<properties>
|
2018-05-12 15:57:09 +01:00
|
|
|
<java.version>8</java.version>
|
2019-06-20 10:33:15 +01:00
|
|
|
<tiles-maven-plugin.version>2.15</tiles-maven-plugin.version>
|
2019-01-26 18:44:45 +00:00
|
|
|
<kemitix-maven-tiles.version>2.1.3</kemitix-maven-tiles.version>
|
2018-05-31 22:47:35 +01:00
|
|
|
<kemitix-checkstyle.version>4.1.1</kemitix-checkstyle.version>
|
2019-05-06 09:32:12 +01:00
|
|
|
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
|
2019-09-02 18:42:30 +01:00
|
|
|
<pitest-maven-plugin.version>1.4.10</pitest-maven-plugin.version>
|
2019-06-14 21:10:31 +01:00
|
|
|
<pitest-junit5-plugin.version>0.9</pitest-junit5-plugin.version>
|
2019-09-11 08:52:05 +01:00
|
|
|
<lombok.version>1.18.10</lombok.version>
|
2019-09-06 12:20:02 +01:00
|
|
|
<jgit.version>5.4.3.201909031940-r</jgit.version>
|
2019-09-02 17:18:33 +01:00
|
|
|
<assertj.version>3.13.2</assertj.version>
|
2019-09-09 12:00:09 +01:00
|
|
|
<junit.version>5.5.2</junit.version>
|
2018-10-30 10:11:11 +00:00
|
|
|
<mon.version>2.0.0</mon.version>
|
2019-04-11 07:00:58 +01:00
|
|
|
<mockito.version>2.27.0</mockito.version>
|
2018-06-15 12:48:55 +01:00
|
|
|
<java-semver.version>0.9.0</java-semver.version>
|
2019-03-06 15:11:28 +00:00
|
|
|
<conditional.version>1.0.0</conditional.version>
|
2018-08-30 21:01:48 +01:00
|
|
|
<digraph-dependency.basePackage>net.kemitix.gitdb</digraph-dependency.basePackage>
|
2018-05-11 16:48:23 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2018-05-11 16:50:46 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jgit</groupId>
|
|
|
|
<artifactId>org.eclipse.jgit</artifactId>
|
|
|
|
<version>${jgit.version}</version>
|
|
|
|
</dependency>
|
2018-05-11 23:39:45 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>mon</artifactId>
|
2018-05-31 20:43:21 +01:00
|
|
|
<version>${mon.version}</version>
|
2018-05-11 23:39:45 +01:00
|
|
|
</dependency>
|
2018-07-19 07:06:51 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>conditional</artifactId>
|
|
|
|
<version>${conditional.version}</version>
|
|
|
|
</dependency>
|
2018-06-15 12:48:55 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.zafarkhaja</groupId>
|
|
|
|
<artifactId>java-semver</artifactId>
|
|
|
|
<version>${java-semver.version}</version>
|
|
|
|
</dependency>
|
2018-05-11 16:48:23 +01:00
|
|
|
<dependency>
|
2018-05-12 15:57:09 +01:00
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
<optional>true</optional>
|
2018-05-11 16:48:23 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${assertj.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<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>
|
2018-06-01 07:31:53 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
|
|
<version>${mockito.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-05-11 16:48:23 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit</groupId>
|
|
|
|
<artifactId>junit-bom</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2018-05-11 19:51:58 +01:00
|
|
|
<plugin>
|
2018-05-31 22:47:35 +01:00
|
|
|
<groupId>io.repaint.maven</groupId>
|
|
|
|
<artifactId>tiles-maven-plugin</artifactId>
|
|
|
|
<version>${tiles-maven-plugin.version}</version>
|
|
|
|
<extensions>true</extensions>
|
2018-05-11 19:51:58 +01:00
|
|
|
<configuration>
|
2018-05-31 22:47:35 +01:00
|
|
|
<tiles>
|
2019-01-26 18:44:45 +00:00
|
|
|
<tile>net.kemitix.tiles:all:${kemitix-maven-tiles.version}</tile>
|
2018-05-31 23:29:50 +01:00
|
|
|
<!--<tile>net.kemitix.tiles:pmd-strict:${kemitix-tiles.version}</tile>-->
|
2018-05-31 22:47:35 +01:00
|
|
|
<tile>net.kemitix.checkstyle:tile:${kemitix-checkstyle.version}</tile>
|
|
|
|
</tiles>
|
2018-05-11 19:51:58 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-05-31 23:16:51 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
|
|
|
</plugin>
|
2018-06-01 07:05:42 +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>
|
2018-05-11 16:48:23 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|