<?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.mulesoft.munit</groupId>
        <artifactId>munit-extensions</artifactId>
        <version>1.0.0-BETA</version>
    </parent>

    <artifactId>munit-tools</artifactId>
    <version>2.2.0-BETA</version>
    <packaging>mule-extension</packaging>

    <name>MUnit :: Tools Extension</name>
    <description>SDK based Mule plugin defining the DSL for assertion and mock processors</description>

    <properties>
        <weave.assertions.version>1.0.0-BETA</weave.assertions.version>

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

        <coverageLineLimit>0.79</coverageLineLimit>
        <coverageBranchLimit>0.92</coverageBranchLimit>
    </properties>


    <dependencies>
        <dependency>
            <groupId>com.mulesoft.munit</groupId>
            <artifactId>munit-assert</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>com.mulesoft.munit</groupId>
            <artifactId>munit-mock</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>com.mulesoft.munit</groupId>
            <artifactId>munit-runner</artifactId>
            <version>${project.version}</version>
            <classifier>mule-plugin</classifier>
        </dependency>
        <dependency>
            <groupId>org.mule.weave</groupId>
            <artifactId>assertions</artifactId>
            <version>${weave.assertions.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>

        <!--TODO Workaround for MULE-11650-->
        <dependency>
            <groupId>org.mule.runtime</groupId>
            <artifactId>mule-core</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
            <exclusions>
                <exclusion>
                    <groupId>asm</groupId>
                    <artifactId>asm</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

    </dependencies>
</project>
