<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/maven-v4_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-de</artifactId>
  <name>NER OpenNLP German</name>
  <description>Named Entity Extraction Module for German based on OpenNLP</description>

    <build>
        <finalName>redlink-${project.artifactId}-${project.version}</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

    <dependencies>
      <dependency>
        <groupId>io.redlink.nlp</groupId>
        <artifactId>ner-opennlp</artifactId>
        <version>${project.version}</version>
      </dependency>
      <dependency> <!-- requires the IXA pipes nerc extensions to OpenNLP --> 
        <groupId>eus.ixa</groupId>
        <artifactId>ixa-pipe-nerc</artifactId>
      </dependency>
      <dependency>
        <groupId>eus.ixa</groupId>
        <artifactId>ixa-pipe-pos</artifactId>
      </dependency>

      <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-api</artifactId>
      </dependency>
      <!-- Test dependencies -->
      <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>io.redlink.nlp</groupId>
        <artifactId>langdetect</artifactId>
        <version>${project.version}</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>io.redlink.nlp</groupId>
        <artifactId>nlp-opennlp-de</artifactId>
        <version>${project.version}</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-math3</artifactId>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>ch.qos.logback</groupId>
        <artifactId>logback-classic</artifactId>
        <scope>test</scope>
      </dependency>
    </dependencies>

</project>
