<?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 https://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>6.3.6</version>
    </parent>

    <groupId>com.atlassian.plugins</groupId>
    <artifactId>avatar-plugin-parent</artifactId>
    <version>3.0.0</version>
    <packaging>pom</packaging>

    <name>Atlassian Plugins - Avatar Plugin Parent</name>

    <modules>
        <module>avatar-plugin</module>
        <module>avatar-plugin-api</module>
    </modules>

    <scm>
        <connection>scm:git:ssh://git@bitbucket.org/atlassian/avatar-plugin.git</connection>
        <developerConnection>scm:git:ssh://git@bitbucket.org/atlassian/avatar-plugin.git</developerConnection>
        <url>https://bitbucket.org/atlassian/avatar-plugin</url>
        <tag>avatar-plugin-parent-3.0.0</tag>
    </scm>

    <properties>
        <maven.compiler.release>17</maven.compiler.release>
        <atlassian.plugin.key>com.atlassian.plugins.avatar</atlassian.plugin.key>
        <amps.version>8.14.2</amps.version>
        <atlassian.spring.scanner.version>4.0.0</atlassian.spring.scanner.version>
        <junit.version>4.13.2</junit.version>
        <platform.version>7.0.0-m31</platform.version>
        <failOnMilestoneOrReleaseCandidateDeps>false</failOnMilestoneOrReleaseCandidateDeps>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>com.atlassian.platform.dependencies</groupId>
                <artifactId>platform-public-api</artifactId>
                <version>${platform.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>com.atlassian.platform.dependencies</groupId>
                <artifactId>platform-bundled-plugins</artifactId>
                <version>${platform.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>com.atlassian.platform.dependencies</groupId>
                <artifactId>platform-spring-bundle</artifactId>
                <version>${platform.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>${junit.version}</version>
            </dependency>
            <dependency>
                <groupId>com.atlassian.plugins</groupId>
                <artifactId>avatar-plugin-api</artifactId>
                <version>${project.version}</version>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>com.atlassian.maven.plugins</groupId>
                    <artifactId>refapp-maven-plugin</artifactId>
                    <version>${amps.version}</version>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>
</project>
