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

    <artifactId>java-module-suite</artifactId>
    <packaging>mule-application</packaging>

    <name>MUnit :: Extensions - Java Module Suite</name>
    <description>Tests to validate Java Module Connector</description>

    <properties>
        <licensePath>../../../../LICENSE_HEADER.txt</licensePath>
        <formatterConfigPath>../../../../formatter.xml</formatterConfigPath>
        <findbugsExcludePath>../../../../findbugs-exclude.xml</findbugsExcludePath>

        <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>

    <dependencies>
        <dependency>
            <groupId>org.mule.module</groupId>
            <artifactId>mule-java-module</artifactId>
            <version>${mule.java.module.version}</version>
            <classifier>mule-plugin</classifier>
        </dependency>
    </dependencies>
</project>