2016-01-09 17:08:52 +00: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>
|
|
|
|
<artifactId>node</artifactId>
|
2018-10-09 22:08:43 +01:00
|
|
|
<version>DEV-SNAPSHOT</version>
|
2016-01-09 17:08:52 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Node</name>
|
|
|
|
<description>A parent/children data structure</description>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>kemitix-parent</artifactId>
|
2020-03-20 12:23:06 +00:00
|
|
|
<version>5.3.0</version>
|
2018-10-09 22:08:43 +01:00
|
|
|
<relativePath/>
|
2016-01-09 17:08:52 +00:00
|
|
|
</parent>
|
|
|
|
|
2016-05-23 11:57:50 +01:00
|
|
|
<properties>
|
2018-10-09 22:08:43 +01:00
|
|
|
<java.version>1.8</java.version>
|
2020-03-22 21:49:05 +00:00
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
2020-12-10 05:17:37 +00:00
|
|
|
<tiles-maven-plugin.version>2.19</tiles-maven-plugin.version>
|
2020-03-21 10:35:21 +00:00
|
|
|
<kemitix-maven-tiles.version>2.4.1</kemitix-maven-tiles.version>
|
|
|
|
<kemitix-checkstyle.version>5.4.0</kemitix-checkstyle.version>
|
2020-04-03 09:14:57 +01:00
|
|
|
<list-head-tail.version>1.0.0</list-head-tail.version>
|
2020-10-16 12:53:13 +01:00
|
|
|
<lombok.version>1.18.16</lombok.version>
|
2021-01-25 05:20:19 +00:00
|
|
|
<assertj.version>3.19.0</assertj.version>
|
2016-08-21 11:36:46 +01:00
|
|
|
<trajano-commons-testing.version>2.1.0</trajano-commons-testing.version>
|
2020-09-14 06:24:04 +01:00
|
|
|
<junit.version>5.7.0</junit.version>
|
2019-10-17 10:55:58 +01:00
|
|
|
<hamcrest.version>2.2</hamcrest.version>
|
2018-10-09 22:08:43 +01:00
|
|
|
<jacoco-class-instruction-covered-ratio>97%</jacoco-class-instruction-covered-ratio>
|
2016-05-23 11:57:50 +01:00
|
|
|
</properties>
|
|
|
|
|
2016-01-09 17:08:52 +00:00
|
|
|
<issueManagement>
|
|
|
|
<url>https://github.com/kemitix/node/issues</url>
|
|
|
|
<system>GitHub Issues</system>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:kemitix/node.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:kemitix/node.git</developerConnection>
|
|
|
|
<url>git@github.com:kemitix/node.git</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<url>https://github.com/kemitix/node</url>
|
|
|
|
|
|
|
|
<inceptionYear>2016</inceptionYear>
|
|
|
|
|
|
|
|
<dependencies>
|
2020-04-03 09:14:57 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.kemitix</groupId>
|
|
|
|
<artifactId>list-head-tail</artifactId>
|
|
|
|
<version>${list-head-tail.version}</version>
|
|
|
|
</dependency>
|
2018-10-09 22:08:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-01-09 17:08:52 +00:00
|
|
|
<dependency>
|
2020-03-22 21:49:05 +00:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2017-02-16 20:28:12 +00:00
|
|
|
<version>${junit.version}</version>
|
2016-01-09 17:08:52 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
2017-02-16 20:28:12 +00:00
|
|
|
<version>${hamcrest.version}</version>
|
2016-01-09 17:08:52 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-05-23 11:57:50 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${assertj.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-08-21 11:36:46 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.trajano.commons</groupId>
|
|
|
|
<artifactId>commons-testing</artifactId>
|
|
|
|
<version>${trajano-commons-testing.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-01-09 17:08:52 +00:00
|
|
|
</dependencies>
|
2018-10-09 22:08:43 +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:all:${kemitix-maven-tiles.version}</tile>
|
|
|
|
<!--<tile>net.kemitix.tiles:pmd-strict:${kemitix-tiles.version}</tile>-->
|
|
|
|
<tile>net.kemitix.checkstyle:tile:${kemitix-checkstyle.version}</tile>
|
|
|
|
</tiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-01-09 18:00:33 +00:00
|
|
|
</project>
|