<?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">
    <parent>
        <artifactId>coverage</artifactId>
        <groupId>com.mulesoft.munit.tests</groupId>
        <version>2.2.0</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>scatter-gather-suite</artifactId>
    <packaging>mule-application</packaging>

    <name>MUnit :: Coverage - Scatter Gather Suite</name>
    <description>Tests to validate coverage on scenarios with Scatter Gather</description>

    <properties>
        <failBuild>true</failBuild>
        <executeCoverage>true</executeCoverage>
        <applicationCoverage>100</applicationCoverage>
        <resourceCoverage>100</resourceCoverage>

        <skipTests>${skipIntegrationTests}</skipTests>
        <skipMunitTests>${skipIntegrationTests}</skipMunitTests>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.mule.tools.maven</groupId>
                <artifactId>mule-maven-plugin</artifactId>
                <version>${mule.maven.plugin.version}</version>
                <extensions>true</extensions>
            </plugin>
            <plugin>
                <groupId>com.mulesoft.munit.tools</groupId>
                <artifactId>munit-maven-plugin</artifactId>
                <version>${project.version}</version>            
            </plugin>
        </plugins>
    </build>

</project>