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

    <parent>
        <groupId>org.languagetool</groupId>
        <artifactId>languagetool-parent</artifactId>
        <version>2.9</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
    
    <artifactId>hunspell-native-libs</artifactId>
    <url>http://www.languagetool.org</url>
    <name>Hunspell native libs for LanguageTool</name>

    <licenses>
        <!-- source: http://hunspell.sourceforge.net/ -->
        <license>
            <name>GNU Lesser General Public License</name>
            <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
            <distribution>repo</distribution>
            <comments>version 2.1 or later</comments>
        </license>
        <license>
            <name>Mozilla Public License</name>
            <url>http://www.mozilla.org/MPL/1.1/</url>
            <comments>version 1.1 or later</comments>
            <distribution>repo</distribution>
        </license>
        <license>
            <name>GNU General Public License</name>
            <url>http://www.gnu.org/licenses/gpl-2.0.html</url>
            <comments>version 2 or later</comments>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <build>
        <resources>
            <resource>
                <directory>libs/native-lib</directory>
                <includes>
                    <include>**/*</include>
                </includes>
            </resource>
        </resources>
    </build>
    
</project>