<?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.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <groupId>ru.yandex.qatools.properties</groupId>
    <artifactId>properties</artifactId>
    <version>1.5</version>

    <organization>
        <name>Yandex</name>
        <url>http://company.yandex.com</url>
    </organization>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <modules>
        <module>properties-loader</module>
    </modules>

    <name>Yandex QATools Properties Utils</name>
    <packaging>pom</packaging>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <issueManagement>
        <system>GitHub Issues</system>
        <url>https://github.com/yandex-qatools/properties/issues</url>
    </issueManagement>

    <scm>
        <url>https://github.com/yandex-qatools/properties</url>
        <connection>scm:git:git@github.com:yandex-qatools/properties.git</connection>
        <developerConnection>scm:git:git@github.com:yandex-qatools/properties.git</developerConnection>
    </scm>
    <developers>
        <developer>
            <id>aandryashin</id>
            <name>Alexander Andryashin</name>
            <email>aandryashin@yandex-team.ru</email>
            <organization>Yandex</organization>
        </developer>
        <developer>
            <id>eroshenkoam</id>
            <name>Artem Eroshenko</name>
            <email>eroshenkoam@yandex-team.ru</email>
            <organization>Yandex</organization>
        </developer>
       <developer>
            <id>lanwen</id>
            <name>Merkushev Kirill</name>
            <email>lanwen@yandex-team.ru</email>
            <organization>Yandex</organization>
        </developer>
    </developers>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>
