<?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>org.opendaylight.mdsal</groupId>
        <artifactId>feature-parent</artifactId>
        <version>9.0.2</version>
        <relativePath>../feature-parent</relativePath>
    </parent>

    <artifactId>odl-mdsal-trace</artifactId>
    <version>9.0.2</version>
    <packaging>feature</packaging>
    <name>OpenDaylight :: MD-SAL :: TracingBroker</name>
    <description>MD-SAL Trace tooling</description>

    <dependencies>
        <dependency>
            <groupId>org.opendaylight.mdsal</groupId>
            <artifactId>odl-mdsal-binding-dom-adapter</artifactId>
            <type>xml</type>
            <classifier>features</classifier>
        </dependency>
        <dependency>
            <groupId>org.opendaylight.mdsal</groupId>
            <artifactId>mdsal-trace-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.opendaylight.mdsal</groupId>
            <artifactId>mdsal-trace-impl</artifactId>
             <exclusions>
                 <exclusion>
                    <!-- This dependency is shaded in mdsal-binding-dom-codec, but
                         the build reactor still sees it, hence we need to explicitly
					     exclude it -->
                     <groupId>net.bytebuddy</groupId>
                     <artifactId>byte-buddy</artifactId>
                 </exclusion>
             </exclusions>
        </dependency>
        <dependency>
            <groupId>org.opendaylight.mdsal</groupId>
            <artifactId>mdsal-trace-cli</artifactId>
        </dependency>
    </dependencies>
</project>
