<?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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.mulesoft.mule.runtime</groupId>
        <artifactId>mule</artifactId>
        <version>4.7.2</version>
    </parent>
    <groupId>com.mulesoft.mule.tests</groupId>
    <artifactId>mule-tests</artifactId>
    <packaging>pom</packaging>
    <name>Mule EE Tests</name>
    <description>Mule EE Tests</description>

    <properties>
        <!-- <destDir> referenced below in <reportOutputDirectory> but not being used -->
        <destDir>apidocs</destDir>
        <!-- <redirectTestOutputToFile> used in maven-surefire-plugin -->
        <redirectTestOutputToFile>true</redirectTestOutputToFile>

        <formatterConfigPath>../formatter.xml</formatterConfigPath>
        <skipMuleModuleMojos>true</skipMuleModuleMojos>
    </properties>

    <modules>
        <module>allure</module>
        <module>cache</module>
        <module>domain</module>
        <module>xa-tx</module>
        <module>core</module>
        <module>dsl</module>
    </modules>

    <dependencies>
        <dependency>
            <groupId>org.mule.tests</groupId>
            <artifactId>test-components</artifactId>
            <version>${muleTestComponentsVersion}</version>
            <classifier>mule-plugin</classifier>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <workingDirectory>${project.build.directory}</workingDirectory>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
