<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright (c) 2015 Redlink GmbH
  -->

<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>

    <parent>
      <groupId>io.redlink.nlp</groupId>
      <artifactId>redlink-nlp</artifactId>
      <version>2.0.0-SNAPSHOT</version>
    </parent>

    <artifactId>nlp-model</artifactId>

    <name>Redlink Nlp Model</name>
    <description>
        Model for representing and storing token level NLP annotations
    </description>


    <build>
    </build>

    <dependencies>
      <dependency>
        <groupId>io.redlink.nlp</groupId>
        <artifactId>api</artifactId>
        <version>${project.version}</version>
      </dependency>
      <!-- The model includes annotations that allow to persist data in Spring Data MongoDB -->
      <dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-commons</artifactId>
        <version>${spring.data.version}</version>
        <scope>provided</scope>
      </dependency>
      
      <!-- Commons-->
      <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-lang3</artifactId>
      </dependency>
      <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-collections4</artifactId>
      </dependency>
      
      <!-- Logging -->
      <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-api</artifactId>
      </dependency>
      
      <!-- Testing -->

    </dependencies>
</project>
