<?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>com.atlassian.stash</groupId>
        <artifactId>stash-bundled-plugins-parent</artifactId>
        <version>2.4.2</version>
    </parent>

    <artifactId>stash-bundled-plugins</artifactId>
    <packaging>pom</packaging>
    <name>Atlassian Stash Bundled Plugins</name>

    <properties>
        <stash.bundled.plugins.file.prefix>stash-bundled-plugins</stash.bundled.plugins.file.prefix>
    </properties>

    <profiles>
        <profile>
            <id>beta</id>

            <dependencies>
                <!-- only include the issue collector when we do a beta build -->
                <dependency>
                    <groupId>com.atlassian.stash.plugin</groupId>
                    <artifactId>stash-issue-collector-plugin</artifactId>
                    <scope>provided</scope>
                </dependency>
            </dependencies>
        </profile>
    </profiles>

    <build>
        <plugins>
            <plugin>
                <groupId>com.luuuis</groupId>
                <artifactId>smartass-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <!-- These are plugins that we want to install in the standalone webapp and not in the hosted webapp.
             Common plugins should be added to the bundled-plugins/pom.xml
             They're marked as scope provided so the Maven WAR plugin doesn't try to package them in WEB-INF/lib. -->
        <dependency>
            <groupId>com.atlassian.stash</groupId>
            <artifactId>stash-ssh</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>

</project>
