<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.upm</groupId>
        <artifactId>atlassian-universal-plugin-manager</artifactId>
        <version>2.21.5</version>
    </parent>
    <name>Atlassian Universal Plugin Manager Wired Tests Parent</name>
    <artifactId>wired-tests</artifactId>
    <packaging>pom</packaging>

    <modules>
        <module>wired-tests-helper-plugin</module>
    </modules>
    
    <profiles>
        <profile>
            <!-- UPM-3634 provide a way that is enabled by default but allows for running unit tests by themselves
                 (meaning, without any integration, ui, or wired tests) -->
            <id>executeIntegrationAndUiTests</id>
            <modules>
                <module>wired-tests-suite</module>
            </modules>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
        </profile>
    </profiles>

</project>