Merge "BUG 6626 Packet IN handler thread in deadlock after high ARP rate"
[genius.git] / features / 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 INTERNAL
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.odlparent</groupId>
15     <artifactId>features-parent</artifactId>
16     <version>1.8.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>genius-features</artifactId>
22   <version>0.2.0-SNAPSHOT</version>
23   <name>${project.artifactId}</name>
24
25   <prerequisites>
26     <maven>3.1.1</maven>
27   </prerequisites>
28
29   <properties>
30     <openflowplugin.version>0.4.0-SNAPSHOT</openflowplugin.version>
31     <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
32     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
33     <mdsal.version>1.5.0-SNAPSHOT</mdsal.version>
34     <restconf.version>1.5.0-SNAPSHOT</restconf.version>
35     <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
36     <dlux.version>0.5.0-SNAPSHOT</dlux.version>
37     <liblldp.version>0.12.0-SNAPSHOT</liblldp.version>
38     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
39     <infrautils.version>1.1.0-SNAPSHOT</infrautils.version>
40   </properties>
41
42   <dependencyManagement>
43     <dependencies>
44       <!-- project specific dependencies -->
45       <dependency>
46         <groupId>org.opendaylight.controller</groupId>
47         <artifactId>mdsal-artifacts</artifactId>
48         <version>${mdsal.version}</version>
49         <type>pom</type>
50         <scope>import</scope>
51       </dependency>
52       <dependency>
53         <groupId>org.opendaylight.netconf</groupId>
54         <artifactId>restconf-artifacts</artifactId>
55         <version>${restconf.version}</version>
56         <type>pom</type>
57         <scope>import</scope>
58       </dependency>
59       <dependency>
60         <groupId>org.opendaylight.yangtools</groupId>
61         <artifactId>yangtools-artifacts</artifactId>
62         <version>${yangtools.version}</version>
63         <type>pom</type>
64         <scope>import</scope>
65       </dependency>
66     </dependencies>
67   </dependencyManagement>
68
69   <dependencies>
70     <dependency>
71       <groupId>org.opendaylight.yangtools</groupId>
72       <artifactId>features-yangtools</artifactId>
73       <classifier>features</classifier>
74       <type>xml</type>
75       <scope>runtime</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.mdsal.model</groupId>
79       <artifactId>features-mdsal-model</artifactId>
80       <version>${mdsal.model.version}</version>
81       <classifier>features</classifier>
82       <type>xml</type>
83       <scope>runtime</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.controller</groupId>
87       <artifactId>features-mdsal</artifactId>
88       <classifier>features</classifier>
89       <type>xml</type>
90       <scope>runtime</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.dlux</groupId>
94       <artifactId>features-dlux</artifactId>
95       <classifier>features</classifier>
96       <version>${dlux.version}</version>
97       <type>xml</type>
98       <scope>runtime</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.ovsdb</groupId>
102       <artifactId>southbound-features</artifactId>
103       <version>${ovsdb.version}</version>
104       <classifier>features</classifier>
105       <type>xml</type>
106       <scope>runtime</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.ovsdb</groupId>
110       <artifactId>hwvtepsouthbound-features</artifactId>
111       <version>${ovsdb.version}</version>
112       <classifier>features</classifier>
113       <type>xml</type>
114       <scope>runtime</scope>
115     </dependency>
116     <dependency>
117       <groupId>org.opendaylight.openflowplugin</groupId>
118       <artifactId>features-openflowplugin</artifactId>
119       <classifier>features</classifier>
120       <version>${openflowplugin.version}</version>
121       <type>xml</type>
122       <scope>runtime</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.opendaylight.openflowplugin</groupId>
126       <artifactId>features-openflowplugin-extension</artifactId>
127       <classifier>features</classifier>
128       <version>${openflowplugin.version}</version>
129       <type>xml</type>
130       <scope>runtime</scope>
131     </dependency>
132     <dependency>
133       <groupId>org.opendaylight.netconf</groupId>
134       <artifactId>features-restconf</artifactId>
135       <classifier>features</classifier>
136       <version>${restconf.version}</version>
137       <type>xml</type>
138       <scope>runtime</scope>
139     </dependency>
140     <dependency>
141       <groupId>${project.groupId}</groupId>
142       <artifactId>interfacemanager-impl</artifactId>
143       <version>${project.version}</version>
144     </dependency>
145     <dependency>
146       <groupId>${project.groupId}</groupId>
147       <artifactId>interfacemanager-impl</artifactId>
148       <version>${project.version}</version>
149       <type>xml</type>
150       <classifier>config</classifier>
151     </dependency>
152     <dependency>
153       <groupId>${project.groupId}</groupId>
154       <artifactId>interfacemanager-api</artifactId>
155       <version>${project.version}</version>
156     </dependency>
157     <dependency>
158       <groupId>${project.groupId}</groupId>
159       <artifactId>interfacemanager-shell</artifactId>
160       <version>${project.version}</version>
161     </dependency>
162     <dependency>
163       <groupId>${project.groupId}</groupId>
164       <artifactId>idmanager-impl</artifactId>
165       <version>${project.version}</version>
166     </dependency>
167     <dependency>
168       <groupId>${project.groupId}</groupId>
169       <artifactId>idmanager-impl</artifactId>
170       <version>${project.version}</version>
171       <type>xml</type>
172       <classifier>config</classifier>
173     </dependency>
174     <dependency>
175       <groupId>${project.groupId}</groupId>
176       <artifactId>idmanager-api</artifactId>
177       <version>${project.version}</version>
178     </dependency>
179     <dependency>
180       <groupId>${project.groupId}</groupId>
181       <artifactId>idmanager-shell</artifactId>
182       <version>${project.version}</version>
183     </dependency>
184     <dependency>
185       <groupId>${project.groupId}</groupId>
186       <artifactId>lockmanager-impl</artifactId>
187       <version>${project.version}</version>
188     </dependency>
189     <dependency>
190       <groupId>${project.groupId}</groupId>
191       <artifactId>lockmanager-impl</artifactId>
192       <version>${project.version}</version>
193       <type>xml</type>
194       <classifier>config</classifier>
195     </dependency>
196     <dependency>
197       <groupId>${project.groupId}</groupId>
198       <artifactId>lockmanager-api</artifactId>
199       <version>${project.version}</version>
200     </dependency>
201     <dependency>
202       <groupId>${project.groupId}</groupId>
203       <artifactId>mdsalutil-impl</artifactId>
204       <version>${project.version}</version>
205     </dependency>
206     <dependency>
207       <groupId>${project.groupId}</groupId>
208       <artifactId>mdsalutil-impl</artifactId>
209       <version>${project.version}</version>
210       <type>xml</type>
211       <classifier>config</classifier>
212     </dependency>
213     <dependency>
214       <groupId>${project.groupId}</groupId>
215       <artifactId>mdsalutil-api</artifactId>
216       <version>${project.version}</version>
217     </dependency>
218     <dependency>
219       <groupId>${project.groupId}</groupId>
220       <artifactId>arputil-impl</artifactId>
221       <version>${project.version}</version>
222     </dependency>
223     <dependency>
224       <groupId>${project.groupId}</groupId>
225       <artifactId>arputil-impl</artifactId>
226       <version>${project.version}</version>
227       <type>xml</type>
228       <classifier>config</classifier>
229     </dependency>
230     <dependency>
231       <groupId>${project.groupId}</groupId>
232       <artifactId>arputil-api</artifactId>
233       <version>${project.version}</version>
234     </dependency>
235     <dependency>
236       <groupId>${project.groupId}</groupId>
237       <artifactId>alivenessmonitor-impl</artifactId>
238       <version>${project.version}</version>
239     </dependency>
240     <dependency>
241       <groupId>${project.groupId}</groupId>
242       <artifactId>alivenessmonitor-api</artifactId>
243       <version>${project.version}</version>
244     </dependency>
245     <dependency>
246       <groupId>${project.groupId}</groupId>
247       <artifactId>itm-impl</artifactId>
248       <version>${project.version}</version>
249     </dependency>
250     <dependency>
251       <groupId>${project.groupId}</groupId>
252       <artifactId>itm-impl</artifactId>
253       <version>${project.version}</version>
254       <type>xml</type>
255       <classifier>config</classifier>
256     </dependency>
257     <dependency>
258       <groupId>${project.groupId}</groupId>
259       <artifactId>itm-api</artifactId>
260       <version>${project.version}</version>
261     </dependency>
262     <dependency>
263       <groupId>${project.groupId}</groupId>
264       <artifactId>alarmmanager</artifactId>
265       <version>${project.version}</version>
266     </dependency>
267     <dependency>
268       <groupId>${project.groupId}</groupId>
269       <artifactId>countermanager</artifactId>
270       <version>${project.version}</version>
271     </dependency>
272     <dependency>
273       <groupId>${project.groupId}</groupId>
274       <artifactId>fcaps-api</artifactId>
275       <version>${project.version}</version>
276     </dependency>
277     <dependency>
278       <groupId>${project.groupId}</groupId>
279       <artifactId>fcapsapplication-jmxapi</artifactId>
280       <version>${project.version}</version>
281     </dependency>
282     <dependency>
283       <groupId>${project.groupId}</groupId>
284       <artifactId>fcapsapplication-impl</artifactId>
285       <version>${project.version}</version>
286     </dependency>
287     <dependency>
288       <groupId>${project.groupId}</groupId>
289       <artifactId>fcapsapplication-impl</artifactId>
290       <version>${project.version}</version>
291       <type>xml</type>
292       <classifier>config</classifier>
293     </dependency>
294     <dependency>
295       <groupId>${project.groupId}</groupId>
296       <artifactId>resourcemanager-api</artifactId>
297       <version>${project.version}</version>
298     </dependency>
299     <dependency>
300       <groupId>${project.groupId}</groupId>
301       <artifactId>resourcemanager-impl</artifactId>
302       <version>${project.version}</version>
303     </dependency>
304     <dependency>
305       <groupId>javax.inject</groupId>
306       <artifactId>javax.inject</artifactId>
307     </dependency>
308     <dependency>
309       <groupId>org.opendaylight.infrautils</groupId>
310       <artifactId>infrautils-features</artifactId>
311       <version>${infrautils.version}</version>
312       <classifier>features</classifier>
313       <type>xml</type>
314     </dependency>
315   </dependencies>
316 </project>