Release Carbon
[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.10.2-Carbon</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.controller</groupId>
21   <artifactId>mdsal-trace-dom-impl</artifactId>
22   <version>1.5.2-Carbon</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.2.2-Carbon</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                 <!--<Embed-Dependency>sal-broker-impl;type=!pom;inline=false</Embed-Dependency>-->
92                 <Import-Package>
93                 org.opendaylight.controller.md.sal.binding.api,
94                 org.opendaylight.controller.md.sal.dom.broker.impl,org.opendaylight.controller.md.sal.binding.impl,
95                 org.opendaylight.controller.sal.core.api.model,*
96                 </Import-Package>
97                 <Export-Package>org.opendaylight.controller.md.sal.trace.dom.impl</Export-Package>
98                 <Embed-Transitive>true</Embed-Transitive>
99             </instructions>
100             </configuration>
101         </plugin>
102         <plugin>
103           <groupId>org.apache.maven.plugins</groupId>
104           <artifactId>maven-checkstyle-plugin</artifactId>
105           <configuration>
106             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
107           </configuration>
108         </plugin>
109     </plugins>
110     </build>
111 </project>