<?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.jira</groupId>
        <artifactId>jira-software-application-parent</artifactId>
        <version>9.0.0-int-0086</version>
    </parent>

    <artifactId>jira-software-plugins</artifactId>
    <version>9.0.0-int-0086</version>
    <packaging>pom</packaging>

    <modules>
        <module>jira-agile</module>
        <module>jira-fisheye-plugin</module>
        <module>jira-transition-triggers</module>
        <module>jira-bamboo-plugin</module>
        <module>jira-software-plugin</module>
        <module>jira-software-monitor</module>
        <module>jira-advanced-roadmaps</module>
    </modules>

    <profiles>
        <!--code coverage-->
        <profile>
            <id>jacoco</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.jacoco</groupId>
                        <artifactId>jacoco-maven-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>report</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>report</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>
