<?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>

    <groupId>com.github.michaelgantman</groupId>
    <artifactId>MgntUtils</artifactId>
    <version>1.1.0.1</version>
    <name>MgntUtils</name>
    <description>
        Set of various Utils: stacktrace noice filter, String to/from unicode sequence converter, Silent String parsing
        to Integer and other numeric types, Version comparator and Version ranges operations, Self-throttling binary
        reader from Http request, File reader.
    </description>
    <url>https://github.com/michaelgantman/Mgnt</url>
    <licenses>
        <license>
            <name>The MIT License (MIT)</name>
            <url>http://opensource.org/licenses/mit-license.php</url>
        </license>
    </licenses>
    <developers>
        <developer>
            <name>
                Michael Gantman
            </name>
            <email>
                michael_gantman@yahoo.com
            </email>
        </developer>
    </developers>

    <scm>
        <connection>scm:git:https://github.com/michaelgantman/Mgnt</connection>
        <developerConnection>scm:git:https://github.com/michaelgantman/Mgnt</developerConnection>
        <url>https://github.com/michaelgantman/Mgnt</url>
    </scm>
    <dependencies>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.1.0</version>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.7.21</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.3.2</version>
        </dependency>
    </dependencies>
    <build>
        <finalName>MgntUtils</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <encoding>utf-8</encoding>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>