80 lines
2.7 KiB
XML
80 lines
2.7 KiB
XML
<?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>
|
|
<version>0.5.0-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Node</name>
|
|
<description>A parent/children data structure</description>
|
|
|
|
<parent>
|
|
<groupId>net.kemitix</groupId>
|
|
<artifactId>kemitix-parent</artifactId>
|
|
<version>2.0.0</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<lombok.version>1.16.10</lombok.version>
|
|
<assertj.version>3.5.2</assertj.version>
|
|
<coveralls-maven-plugin.version>4.2.0</coveralls-maven-plugin.version>
|
|
<trajano-commons-testing.version>2.1.0</trajano-commons-testing.version>
|
|
</properties>
|
|
|
|
<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>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.eluder.coveralls</groupId>
|
|
<artifactId>coveralls-maven-plugin</artifactId>
|
|
<version>${coveralls-maven-plugin.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hamcrest</groupId>
|
|
<artifactId>hamcrest-core</artifactId>
|
|
<version>1.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<version>${assertj.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.trajano.commons</groupId>
|
|
<artifactId>commons-testing</artifactId>
|
|
<version>${trajano-commons-testing.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|