Release mdsal
[mdsal.git] / features / odl-mdsal-trace / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.mdsal</groupId>
6         <artifactId>feature-parent</artifactId>
7         <version>9.0.3</version>
8         <relativePath>../feature-parent</relativePath>
9     </parent>
10
11     <artifactId>odl-mdsal-trace</artifactId>
12     <version>9.0.3</version>
13     <packaging>feature</packaging>
14     <name>OpenDaylight :: MD-SAL :: TracingBroker</name>
15     <description>MD-SAL Trace tooling</description>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.opendaylight.mdsal</groupId>
20             <artifactId>odl-mdsal-binding-dom-adapter</artifactId>
21             <type>xml</type>
22             <classifier>features</classifier>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.mdsal</groupId>
26             <artifactId>mdsal-trace-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.mdsal</groupId>
30             <artifactId>mdsal-trace-impl</artifactId>
31              <exclusions>
32                  <exclusion>
33                     <!-- This dependency is shaded in mdsal-binding-dom-codec, but
34                          the build reactor still sees it, hence we need to explicitly
35                                              exclude it -->
36                      <groupId>net.bytebuddy</groupId>
37                      <artifactId>byte-buddy</artifactId>
38                  </exclusion>
39              </exclusions>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.mdsal</groupId>
43             <artifactId>mdsal-trace-cli</artifactId>
44         </dependency>
45     </dependencies>
46 </project>