<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>
    <artifactId>mule-tracing-module</artifactId>
    <packaging>mule-extension</packaging>
    <name>Mule Tracing Module</name>
    <description>Mule module for traceability features, including customizable MDC and CorrelationID</description>

    <parent>
        <groupId>org.mule.modules</groupId>
        <artifactId>mule-tracing-module-parent</artifactId>
        <version>1.2.0</version>
    </parent>

    <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <formatterConfigPath>../formatter.xml</formatterConfigPath>

        <muleSdkApiVersion>0.10.3</muleSdkApiVersion>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.mule.runtime</groupId>
            <artifactId>mule-module-extensions-support</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.mule.sdk</groupId>
            <artifactId>mule-sdk-api</artifactId>
            <version>${muleSdkApiVersion}</version>
        </dependency>
    </dependencies>
</project>
