<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>com.atlassian.pom</groupId>
        <artifactId>public-pom</artifactId>
        <version>5.0.29</version>
    </parent>
    <groupId>com.atlassian.test</groupId>
    <artifactId>branch-merge-test</artifactId>
    <version>1.0.4</version>
    <packaging>jar</packaging>

    <name>branch-merge-test</name>
    <description>Project to test automatic branch merging scripts for Java Platform</description>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.8</java.version>
    </properties>

    <scm>
        <connection>scm:git:ssh://git@bitbucket.org/wkritzinger/branch-merge-test.git</connection>
        <developerConnection>scm:git:ssh://git@bitbucket.org/wkritzinger/branch-merge-test.git</developerConnection>
        <url>https://bitbucket.org/wkritzinger/branch-merge-test</url>
        <tag>branch-merge-test-1.0.4</tag>
    </scm>

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

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>