<?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.bicoco</groupId>
    <artifactId>java-list-helpers</artifactId>
    <version>1.0</version>
    <packaging>jar</packaging>

    <name>Java List Helpers</name>
    <description>Useful library for working with Java List</description>
    <url>https://github.com/bicoco/java-list-helpers</url>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <jdk.version>1.6</jdk.version>
        <junit.version>4.11</junit.version>
    </properties>

    <licenses>
        <license>
            <name>The MIT Licence (MIT)</name>
            <url>http://opensource.org/licenses/MIT</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <developers>
        <developer>
            <id>bicoco</id>
            <name>Anderson Davi</name>
            <email>bicoco@gmail.com</email>
        </developer>
    </developers>

    <scm>
        <url>git@github.com:bicoco/java-list-helpers.git</url>
        <connection>scm:git:git@github.com:bicoco/java-list-helpers.git</connection>
        <developerConnection>scm:git:git@github.com:bicoco/java-list-helpers.git</developerConnection>
    </scm>

    <distributionManagement>
        <repository>
            <id>oss-sonatype-release</id>
            <name>oss-sonatype-release</name>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
            <uniqueVersion>false</uniqueVersion>
            <layout>default</layout>
        </repository>
    </distributionManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.4.2</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>${jdk.version}</source>
                    <target>${jdk.version}</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
        </dependency>
    </dependencies>

</project>