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>
|
2017-02-16 21:19:09 +00:00
|
|
|
<version>0.7.0-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>
|
2017-02-16 20:27:45 +00:00
|
|
|
<version>2.4.0</version>
|
2016-01-09 17:08:52 +00:00
|
|
|
</parent>
|
|
|
|
|
2016-05-23 11:57:50 +01:00
|
|
|
<properties>
|
2017-02-18 18:28:43 +00:00
|
|
|
<lombok.version>1.16.12</lombok.version>
|
2017-02-16 20:29:16 +00:00
|
|
|
<assertj.version>3.6.2</assertj.version>
|
2017-02-16 20:29:33 +00:00
|
|
|
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
|
2016-08-21 11:36:46 +01:00
|
|
|
<trajano-commons-testing.version>2.1.0</trajano-commons-testing.version>
|
2017-02-16 20:28:12 +00:00
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<hamcrest.version>1.3</hamcrest.version>
|
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>
|
|
|
|
|
2016-06-03 16:48:49 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eluder.coveralls</groupId>
|
|
|
|
<artifactId>coveralls-maven-plugin</artifactId>
|
|
|
|
<version>${coveralls-maven-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2016-01-09 17:08:52 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</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>
|
2016-01-09 18:00:33 +00:00
|
|
|
</project>
|