Merge "Bug 7270 Duplicate remote Mcast mac entry in TOR ."
[genius.git] / mdsalutil / mdsalutil-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Ericsson India Global Services Pvt Ltd. and others.All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.genius</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.2.0-SNAPSHOT</version>
16     <relativePath>../../commons/config-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>mdsalutil-api</artifactId>
21   <version>0.2.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24 <dependencies>
25   <dependency>
26     <groupId>org.opendaylight.yangtools</groupId>
27     <artifactId>util</artifactId>
28   </dependency>
29   <dependency>
30     <groupId>org.opendaylight.openflowplugin.model</groupId>
31     <artifactId>model-flow-base</artifactId>
32     <version>${openflowplugin.version}</version>
33   </dependency>
34   <dependency>
35     <groupId>org.opendaylight.openflowplugin.model</groupId>
36     <artifactId>model-flow-service</artifactId>
37     <version>${openflowplugin.version}</version>
38   </dependency>
39   <dependency>
40     <groupId>org.opendaylight.controller</groupId>
41     <artifactId>liblldp</artifactId>
42     <version>${liblldp.version}</version>
43   </dependency>
44   <dependency>
45     <groupId>org.opendaylight.openflowplugin</groupId>
46     <artifactId>openflowplugin-extension-nicira</artifactId>
47     <version>${openflowplugin.version}</version>
48   </dependency>
49   <dependency>
50     <groupId>org.opendaylight.openflowplugin</groupId>
51     <artifactId>openflowjava-extension-nicira</artifactId>
52     <version>${openflowplugin.version}</version>
53   </dependency>
54   <dependency>
55     <groupId>org.opendaylight.ovsdb</groupId>
56     <artifactId>hwvtepsouthbound-api</artifactId>
57     <version>${genius.ovsdb.version}</version>
58   </dependency>
59   <dependency>
60     <groupId>org.opendaylight.ovsdb</groupId>
61     <artifactId>utils.config</artifactId>
62     <version>${genius.ovsdb.version}</version>
63   </dependency>
64   <dependency>
65       <groupId>org.opendaylight.infrautils</groupId>
66       <artifactId>counters-api</artifactId>
67       <version>${genius.infrautils.version}</version>
68   </dependency>
69   <dependency>
70       <groupId>org.opendaylight.infrautils</groupId>
71       <artifactId>inject</artifactId>
72       <version>${genius.infrautils.version}</version>
73   </dependency>
74   <dependency>
75     <groupId>org.opendaylight.yangtools</groupId>
76     <artifactId>testutils</artifactId>
77     <scope>test</scope>
78   </dependency>
79   <dependency>
80     <groupId>org.awaitility</groupId>
81     <artifactId>awaitility</artifactId>
82     <scope>test</scope>
83   </dependency>
84   <dependency>
85     <groupId>org.opendaylight.mdsal</groupId>
86     <artifactId>mdsal-binding-test-utils</artifactId>
87     <scope>test</scope>
88   </dependency>
89 </dependencies>
90  <build>
91     <plugins>
92       <plugin>
93         <groupId>org.apache.felix</groupId>
94         <artifactId>maven-bundle-plugin</artifactId>
95         <extensions>true</extensions>
96         <configuration>
97           <instructions>
98             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
99             <Embed-Transitive>true</Embed-Transitive>
100           </instructions>
101         </configuration>
102       </plugin>
103      <plugin>
104        <groupId>org.apache.maven.plugins</groupId>
105        <artifactId>maven-jar-plugin</artifactId>
106        <executions>
107          <execution>
108            <goals>
109              <goal>test-jar</goal>
110            </goals>
111          </execution>
112        </executions>
113      </plugin>
114     </plugins>
115   </build>
116 </project>