969e8c61eae7914c3a6160b8423b05307604d7f5
[controller.git] / opendaylight / md-sal / mdsal-trace / dom-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2016 Red Hat and others. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.mdsal</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>0.12.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.controller</groupId>
21   <artifactId>mdsal-trace-dom-impl</artifactId>
22   <version>1.7.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencyManagement>
26     <dependencies>
27        <dependency>
28          <groupId>org.opendaylight.controller</groupId>
29          <artifactId>mdsal-artifacts</artifactId>
30          <version>${project.version}</version>
31          <type>pom</type>
32          <scope>import</scope>
33        </dependency>
34        <dependency>
35           <groupId>org.opendaylight.mdsal</groupId>
36           <artifactId>mdsal-artifacts</artifactId>
37           <version>2.4.0-SNAPSHOT</version>
38           <type>pom</type>
39           <scope>import</scope>
40       </dependency>
41       </dependencies>
42     </dependencyManagement>
43
44   <dependencies>
45     <dependency>
46       <groupId>${project.groupId}</groupId>
47       <artifactId>mdsal-trace-api</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>sal-binding-api</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>${project.groupId}</groupId>
55       <artifactId>sal-core-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>${project.groupId}</groupId>
59       <artifactId>sal-broker-impl</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.mdsal</groupId>
63       <artifactId>mdsal-binding-dom-codec</artifactId>
64     </dependency>
65
66     <!-- Testing Dependencies -->
67     <dependency>
68       <groupId>junit</groupId>
69       <artifactId>junit</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.mockito</groupId>
74       <artifactId>mockito-core</artifactId>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>com.google.truth</groupId>
79       <artifactId>truth</artifactId>
80       <scope>test</scope>
81     </dependency>
82   </dependencies>
83     <build>
84     <plugins>
85         <plugin>
86             <groupId>org.apache.felix</groupId>
87             <artifactId>maven-bundle-plugin</artifactId>
88             <extensions>true</extensions>
89             <configuration>
90                 <instructions>
91                     <Import-Package>
92                       org.opendaylight.controller.md.sal.dom.broker.impl,
93                       *
94                     </Import-Package>
95                     <Export-Package>org.opendaylight.controller.md.sal.trace.dom.impl</Export-Package>
96                 </instructions>
97             </configuration>
98         </plugin>
99         <plugin>
100           <groupId>org.apache.maven.plugins</groupId>
101           <artifactId>maven-checkstyle-plugin</artifactId>
102           <configuration>
103             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
104           </configuration>
105         </plugin>
106     </plugins>
107     </build>
108 </project>