Support of IPv6ND based aliveness monitor.
[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"
10   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.genius</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>0.5.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>mdsalutil-api</artifactId>
22   <version>0.5.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: genius :: ${project.artifactId}</name>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.opendaylight.yangtools</groupId>
31       <artifactId>util</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.openflowplugin.model</groupId>
35       <artifactId>model-flow-base</artifactId>
36       <version>${openflowplugin.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.openflowplugin.model</groupId>
40       <artifactId>model-flow-service</artifactId>
41       <version>${openflowplugin.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.openflowplugin.libraries</groupId>
45       <artifactId>liblldp</artifactId>
46       <version>${openflowplugin.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>sal-binding-api</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.mdsal</groupId>
54       <artifactId>mdsal-eos-binding-api</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.openflowplugin</groupId>
58       <artifactId>openflowplugin-extension-nicira</artifactId>
59       <version>${openflowplugin.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.openflowplugin</groupId>
63       <artifactId>openflowjava-extension-nicira</artifactId>
64       <version>${openflowplugin.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.ovsdb</groupId>
68       <artifactId>hwvtepsouthbound-api</artifactId>
69       <version>${genius.ovsdb.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.ovsdb</groupId>
73       <artifactId>utils.config</artifactId>
74       <version>${genius.ovsdb.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.serviceutils</groupId>
78       <artifactId>tools-api</artifactId>
79       <version>0.2.0-SNAPSHOT</version>
80     </dependency>
81     <dependency>
82       <groupId>${project.groupId}</groupId>
83       <artifactId>ipv6util-api</artifactId>
84       <version>${project.version}</version>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.infrautils</groupId>
88       <artifactId>infrautils-util</artifactId>
89       <version>${genius.infrautils.version}</version>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.infrautils</groupId>
93       <artifactId>inject</artifactId>
94       <version>${genius.infrautils.version}</version>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.infrautils</groupId>
98       <artifactId>jobcoordinator-api</artifactId>
99       <version>${genius.infrautils.version}</version>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.infrautils</groupId>
103       <artifactId>caches-api</artifactId>
104       <version>${genius.infrautils.version}</version>
105     </dependency>
106    <dependency>
107       <groupId>org.opendaylight.infrautils</groupId>
108       <artifactId>metrics-api</artifactId>
109       <version>${genius.infrautils.version}</version>
110    </dependency>
111     <dependency>
112       <groupId>org.opendaylight.infrautils</groupId>
113       <artifactId>caches-guava-impl</artifactId>
114       <version>${genius.infrautils.version}</version>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118       <groupId>org.immutables</groupId>
119       <artifactId>value</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>org.osgi</groupId>
123       <artifactId>org.osgi.core</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>org.ops4j.pax.cdi</groupId>
127       <artifactId>pax-cdi-api</artifactId>
128       <optional>true</optional>
129     </dependency>
130     <dependency>
131       <groupId>commons-net</groupId>
132       <artifactId>commons-net</artifactId>
133     </dependency>
134
135     <!-- Dependencies with <scope>test -->
136     <dependency>
137       <groupId>org.opendaylight.yangtools</groupId>
138       <artifactId>testutils</artifactId>
139       <scope>test</scope>
140     </dependency>
141     <dependency>
142       <groupId>org.awaitility</groupId>
143       <artifactId>awaitility</artifactId>
144       <scope>test</scope>
145     </dependency>
146     <dependency>
147       <groupId>org.opendaylight.mdsal</groupId>
148       <artifactId>mdsal-binding-test-utils</artifactId>
149       <scope>test</scope>
150     </dependency>
151     <dependency>
152       <groupId>org.opendaylight.infrautils</groupId>
153       <artifactId>infrautils-testutils</artifactId>
154       <version>${genius.infrautils.version}</version>
155       <scope>test</scope>
156     </dependency>
157     <dependency>
158       <groupId>com.google.truth</groupId>
159       <artifactId>truth</artifactId>
160       <scope>test</scope>
161     </dependency>
162     <dependency>
163       <groupId>com.google.guava</groupId>
164       <artifactId>guava-testlib</artifactId>
165     </dependency>
166     <dependency>
167        <groupId>org.opendaylight.controller</groupId>
168        <artifactId>sal-binding-broker-impl</artifactId>
169        <scope>test</scope>
170      </dependency>
171      <dependency>
172        <groupId>org.opendaylight.controller</groupId>
173        <artifactId>sal-binding-broker-impl</artifactId>
174        <scope>test</scope>
175        <type>test-jar</type>
176      </dependency>
177   </dependencies>
178
179   <build>
180     <plugins>
181       <plugin>
182         <groupId>org.apache.felix</groupId>
183         <artifactId>maven-bundle-plugin</artifactId>
184         <extensions>true</extensions>
185         <configuration>
186           <instructions>
187             <Bundle-Activator>org.opendaylight.genius.datastoreutils.Activator</Bundle-Activator>
188           </instructions>
189         </configuration>
190       </plugin>
191       <plugin>
192         <groupId>org.apache.maven.plugins</groupId>
193         <artifactId>maven-jar-plugin</artifactId>
194         <executions>
195           <execution>
196             <goals>
197               <goal>test-jar</goal>
198             </goals>
199           </execution>
200         </executions>
201       </plugin>
202     </plugins>
203   </build>
204 </project>