<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright (c) 2016 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>
      <relativePath>..</relativePath>
    </parent>

    <artifactId>ner-opennlp</artifactId>
    <name>NER OpenNLP</name>
    
    <dependencies>
      <dependency>
        <groupId>io.redlink.nlp</groupId>
        <artifactId>nlp-model</artifactId>
        <version>${project.version}</version>
      </dependency>

      <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
      </dependency>
      <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-lang3</artifactId>
      </dependency>
      
      <dependency>
        <groupId>eus.ixa</groupId>
        <artifactId>ixa-pipe-nerc</artifactId>
      </dependency>
      <dependency>
        <groupId>eus.ixa</groupId>
        <artifactId>ixa-pipe-pos</artifactId>
      </dependency>
      
      <!-- Logging -->
      <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-api</artifactId>
      </dependency>

      <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>ch.qos.logback</groupId>
        <artifactId>logback-classic</artifactId>
        <scope>test</scope>
      </dependency>
    </dependencies>    
</project>