Merge "Support for SNAT and DNAT features in L3 forwarding services."
[vpnservice.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 - 2016 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>features-parent</artifactId>
12     <version>1.7.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.vpnservice</groupId>
16   <artifactId>vpnservice-features</artifactId>
17   <version>0.3.0-SNAPSHOT</version>
18   <name>${project.artifactId}</name>
19   <modelVersion>4.0.0</modelVersion>
20   <prerequisites>
21     <maven>3.1.1</maven>
22   </prerequisites>
23   <properties>
24     <mdsal.version>1.4.0-SNAPSHOT</mdsal.version>
25     <openflowplugin.version>0.3.0-SNAPSHOT</openflowplugin.version>
26     <restconf.version>1.4.0-SNAPSHOT</restconf.version>
27     <yangtools.version>1.0.0-SNAPSHOT</yangtools.version>
28     <mdsal.model.version>0.9.0-SNAPSHOT</mdsal.model.version>
29     <vpnservices.version>0.3.0-SNAPSHOT</vpnservices.version>
30     <ovsdb.version>1.3.0-SNAPSHOT</ovsdb.version>
31     <liblldp.version>0.11.0-SNAPSHOT</liblldp.version>
32     <neutron.version>0.7.0-SNAPSHOT</neutron.version>
33     <nic.version>1.2.0-SNAPSHOT</nic.version>
34     <arputil.version>${vpnservices.version}</arputil.version>
35     <mdsalutil.version>${vpnservices.version}</mdsalutil.version>
36     <vpnmanager.version>${vpnservices.version}</vpnmanager.version>
37     <interfacemgr.version>${vpnservices.version}</interfacemgr.version>
38     <elanmgr.version>${vpnservices.version}</elanmgr.version>
39     <nexthopmgr.version>${vpnservices.version}</nexthopmgr.version>
40     <fibmanager.version>${vpnservices.version}</fibmanager.version>
41     <lockmanager.version>${vpnservices.version}</lockmanager.version>
42     <idmanager.version>${vpnservices.version}</idmanager.version>
43     <itm.version>${vpnservices.version}</itm.version>
44     <neutronvpn.version>${vpnservices.version}</neutronvpn.version>
45   </properties>
46   <dependencyManagement>
47     <dependencies>
48       <!-- project specific dependencies -->
49       <dependency>
50         <groupId>org.opendaylight.controller</groupId>
51         <artifactId>mdsal-artifacts</artifactId>
52         <version>${mdsal.version}</version>
53         <type>pom</type>
54         <scope>import</scope>
55       </dependency>
56       <dependency>
57         <groupId>org.opendaylight.netconf</groupId>
58         <artifactId>restconf-artifacts</artifactId>
59         <version>${restconf.version}</version>
60         <type>pom</type>
61         <scope>import</scope>
62       </dependency>
63     </dependencies>
64   </dependencyManagement>
65   <dependencies>
66     <dependency>
67       <groupId>org.opendaylight.yangtools</groupId>
68       <artifactId>features-yangtools</artifactId>
69       <classifier>features</classifier>
70       <version>${yangtools.version}</version>
71       <type>xml</type>
72       <scope>runtime</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>features-mdsal</artifactId>
77       <classifier>features</classifier>
78       <version>${mdsal.version}</version>
79       <type>xml</type>
80       <scope>runtime</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.mdsal.model</groupId>
84       <artifactId>features-mdsal-model</artifactId>
85       <version>${mdsal.model.version}</version>
86       <classifier>features</classifier>
87       <type>xml</type>
88       <scope>runtime</scope>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.nic</groupId>
92       <artifactId>features-nic</artifactId>
93       <classifier>features</classifier>
94       <version>${nic.version}</version>
95       <type>xml</type>
96       <scope>runtime</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.ovsdb</groupId>
100       <artifactId>southbound-features</artifactId>
101       <version>${ovsdb.version}</version>
102       <classifier>features</classifier>
103       <type>xml</type>
104       <scope>runtime</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.ovsdb</groupId>
108       <artifactId>hwvtepsouthbound-features</artifactId>
109       <version>${ovsdb.version}</version>
110       <classifier>features</classifier>
111       <type>xml</type>
112       <scope>runtime</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.openflowplugin</groupId>
116       <artifactId>features-openflowplugin</artifactId>
117       <classifier>features</classifier>
118       <version>${openflowplugin.version}</version>
119       <type>xml</type>
120       <scope>runtime</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.netconf</groupId>
124       <artifactId>features-restconf</artifactId>
125       <classifier>features</classifier>
126       <version>${restconf.version}</version>
127       <type>xml</type>
128       <scope>runtime</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.opendaylight.neutron</groupId>
132       <artifactId>features-neutron</artifactId>
133       <classifier>features</classifier>
134       <version>${neutron.version}</version>
135       <type>xml</type>
136       <scope>runtime</scope>
137     </dependency>
138     <dependency>
139       <groupId>org.opendaylight.neutron</groupId>
140       <artifactId>dummyprovider</artifactId>
141       <version>${neutron.version}</version>
142     </dependency>
143     <dependency>
144       <groupId>${project.groupId}</groupId>
145       <artifactId>vpnmanager-impl</artifactId>
146       <version>${vpnmanager.version}</version>
147     </dependency>
148     <dependency>
149       <groupId>${project.groupId}</groupId>
150       <artifactId>vpnmanager-impl</artifactId>
151       <version>${vpnmanager.version}</version>
152       <classifier>config</classifier>
153       <type>xml</type>
154     </dependency>
155     <dependency>
156       <groupId>${project.groupId}</groupId>
157       <artifactId>mdsalutil-impl</artifactId>
158       <version>${mdsalutil.version}</version>
159     </dependency>
160     <dependency>
161       <groupId>${project.groupId}</groupId>
162       <artifactId>arputil-api</artifactId>
163       <version>${arputil.version}</version>
164     </dependency>
165     <dependency>
166       <groupId>${project.groupId}</groupId>
167       <artifactId>arputil-impl</artifactId>
168       <version>${arputil.version}</version>
169       <classifier>config</classifier>
170       <type>xml</type>
171     </dependency>
172      <dependency>
173       <groupId>${project.groupId}</groupId>
174       <artifactId>arputil-impl</artifactId>
175       <version>${arputil.version}</version>
176     </dependency>
177     <dependency>
178       <groupId>${project.groupId}</groupId>
179       <artifactId>mdsalutil-impl</artifactId>
180       <version>${mdsalutil.version}</version>
181       <classifier>config</classifier>
182       <type>xml</type>
183     </dependency>
184     <dependency>
185       <groupId>${project.groupId}</groupId>
186       <artifactId>mdsalutil-api</artifactId>
187       <version>${mdsalutil.version}</version>
188     </dependency>
189     <dependency>
190       <groupId>${project.groupId}</groupId>
191       <artifactId>interfacemgr-impl</artifactId>
192       <version>${interfacemgr.version}</version>
193     </dependency>
194     <dependency>
195       <groupId>${project.groupId}</groupId>
196       <artifactId>interfacemgr-impl</artifactId>
197       <version>${interfacemgr.version}</version>
198       <classifier>config</classifier>
199       <type>xml</type>
200     </dependency>
201     <dependency>
202       <groupId>${project.groupId}</groupId>
203       <artifactId>interfacemgr-api</artifactId>
204       <version>${interfacemgr.version}</version>
205     </dependency>
206     <dependency>
207       <groupId>${project.groupId}</groupId>
208       <artifactId>interfacemgr-shell</artifactId>
209       <version>${interfacemgr.version}</version>
210     </dependency>
211     <dependency>
212       <groupId>${project.groupId}</groupId>
213       <artifactId>elanmanager-impl</artifactId>
214       <version>${elanmgr.version}</version>
215     </dependency>
216     <dependency>
217       <groupId>${project.groupId}</groupId>
218       <artifactId>elanmanager-impl</artifactId>
219       <version>${elanmgr.version}</version>
220       <classifier>config</classifier>
221       <type>xml</type>
222     </dependency>
223     <dependency>
224       <groupId>${project.groupId}</groupId>
225       <artifactId>elanmanager-api</artifactId>
226       <version>${elanmgr.version}</version>
227     </dependency>
228     <dependency>
229         <groupId>org.opendaylight.controller</groupId>
230         <artifactId>liblldp</artifactId>
231         <version>${liblldp.version}</version>
232     </dependency>
233     <dependency>
234       <groupId>${project.groupId}</groupId>
235       <artifactId>alivenessmonitor-impl</artifactId>
236       <version>${vpnservices.version}</version>
237     </dependency>
238     <dependency>
239       <groupId>${project.groupId}</groupId>
240       <artifactId>alivenessmonitor-impl</artifactId>
241       <version>${vpnservices.version}</version>
242       <classifier>config</classifier>
243       <type>xml</type>
244     </dependency>
245     <dependency>
246       <groupId>${project.groupId}</groupId>
247       <artifactId>alivenessmonitor-api</artifactId>
248       <version>${vpnservices.version}</version>
249     </dependency>
250     <dependency>
251       <groupId>${project.groupId}</groupId>
252       <artifactId>vpnmanager-api</artifactId>
253       <version>${vpnmanager.version}</version>
254     </dependency>
255     <dependency>
256       <groupId>${project.groupId}</groupId>
257       <artifactId>bgpmanager-impl</artifactId>
258       <version>${vpnservices.version}</version>
259     </dependency>
260     <dependency>
261       <groupId>${project.groupId}</groupId>
262       <artifactId>bgpmanager-impl</artifactId>
263       <version>${vpnservices.version}</version>
264       <classifier>config</classifier>
265       <type>xml</type>
266     </dependency>
267     <dependency>
268       <groupId>${project.groupId}</groupId>
269       <artifactId>bgpmanager-api</artifactId>
270       <version>${vpnservices.version}</version>
271     </dependency>
272     <dependency>
273       <groupId>${project.groupId}</groupId>
274       <artifactId>model-bgp</artifactId>
275       <version>2013.07.15.9-SNAPSHOT</version>
276     </dependency>
277     <dependency>
278       <groupId>${project.groupId}</groupId>
279       <artifactId>fibmanager-impl</artifactId>
280       <version>${fibmanager.version}</version>
281     </dependency>
282     <dependency>
283       <groupId>${project.groupId}</groupId>
284       <artifactId>fibmanager-impl</artifactId>
285       <version>${fibmanager.version}</version>
286       <classifier>config</classifier>
287       <type>xml</type>
288     </dependency>
289     <dependency>
290       <groupId>${project.groupId}</groupId>
291       <artifactId>fibmanager-shell</artifactId>
292       <version>${fibmanager.version}</version>
293     </dependency>
294     <dependency>
295       <groupId>${project.groupId}</groupId>
296       <artifactId>fibmanager-api</artifactId>
297       <version>${fibmanager.version}</version>
298     </dependency>
299     <dependency>
300       <groupId>${project.groupId}</groupId>
301       <artifactId>lockmanager-impl</artifactId>
302       <version>${lockmanager.version}</version>
303     </dependency>
304     <dependency>
305       <groupId>${project.groupId}</groupId>
306       <artifactId>lockmanager-impl</artifactId>
307       <version>${lockmanager.version}</version>
308       <classifier>config</classifier>
309       <type>xml</type>
310     </dependency>
311     <dependency>
312       <groupId>${project.groupId}</groupId>
313       <artifactId>lockmanager-api</artifactId>
314       <version>${lockmanager.version}</version>
315     </dependency>
316     <dependency>
317       <groupId>${project.groupId}</groupId>
318       <artifactId>idmanager-impl</artifactId>
319       <version>${idmanager.version}</version>
320     </dependency>
321     <dependency>
322       <groupId>${project.groupId}</groupId>
323       <artifactId>idmanager-impl</artifactId>
324       <version>${idmanager.version}</version>
325       <classifier>config</classifier>
326       <type>xml</type>
327     </dependency>
328     <dependency>
329       <groupId>${project.groupId}</groupId>
330       <artifactId>idmanager-api</artifactId>
331       <version>${idmanager.version}</version>
332     </dependency>
333     <dependency>
334       <groupId>${project.groupId}</groupId>
335       <artifactId>itm-impl</artifactId>
336       <version>${itm.version}</version>
337     </dependency>
338     <dependency>
339       <groupId>${project.groupId}</groupId>
340       <artifactId>itm-impl</artifactId>
341       <version>${itm.version}</version>
342       <classifier>config</classifier>
343       <type>xml</type>
344     </dependency>
345     <dependency>
346       <groupId>${project.groupId}</groupId>
347       <artifactId>itm-api</artifactId>
348       <version>${itm.version}</version>
349     </dependency>
350     <dependency>
351       <groupId>${project.groupId}</groupId>
352       <artifactId>dhcpservice-impl</artifactId>
353       <version>${vpnservices.version}</version>
354     </dependency>
355     <dependency>
356       <groupId>${project.groupId}</groupId>
357       <artifactId>dhcpservice-impl</artifactId>
358       <version>${vpnservices.version}</version>
359       <classifier>config</classifier>
360       <type>xml</type>
361     </dependency>
362     <dependency>
363       <groupId>${project.groupId}</groupId>
364       <artifactId>dhcpservice-api</artifactId>
365       <version>${vpnservices.version}</version>
366     </dependency>
367     <dependency>
368       <groupId>${project.groupId}</groupId>
369       <artifactId>natservice-impl</artifactId>
370       <version>${vpnservices.version}</version>
371     </dependency>
372     <dependency>
373       <groupId>${project.groupId}</groupId>
374       <artifactId>natservice-impl</artifactId>
375       <version>${vpnservices.version}</version>
376       <classifier>config</classifier>
377       <type>xml</type>
378     </dependency>
379     <dependency>
380       <groupId>${project.groupId}</groupId>
381       <artifactId>natservice-api</artifactId>
382       <version>${vpnservices.version}</version>
383     </dependency>
384     <dependency>
385       <groupId>${project.groupId}</groupId>
386       <artifactId>neutronvpn-api</artifactId>
387       <version>${neutronvpn.version}</version>
388     </dependency>
389     <dependency>
390       <groupId>${project.groupId}</groupId>
391       <artifactId>neutronvpn-impl</artifactId>
392       <version>${neutronvpn.version}</version>
393     </dependency>
394     <dependency>
395       <groupId>${project.groupId}</groupId>
396       <artifactId>neutronvpn-impl</artifactId>
397       <version>${neutronvpn.version}</version>
398       <classifier>config</classifier>
399       <type>xml</type>
400     </dependency>
401     <dependency>
402       <groupId>${project.groupId}</groupId>
403       <artifactId>neutronvpn-shell</artifactId>
404       <version>${neutronvpn.version}</version>
405     </dependency>
406     <dependency>
407       <groupId>org.apache.thrift</groupId>
408       <artifactId>libthrift</artifactId>
409       <version>0.9.1</version>
410     </dependency>
411     <dependency>
412       <groupId>org.opendaylight.openflowplugin</groupId>
413       <artifactId>features-openflowplugin-extension</artifactId>
414       <classifier>features</classifier>
415       <version>${openflowplugin.version}</version>
416       <type>xml</type>
417       <scope>runtime</scope>
418     </dependency>
419     <dependency>
420       <groupId>commons-net</groupId>
421       <artifactId>commons-net</artifactId>
422     </dependency>
423     <dependency>
424       <groupId>${project.groupId}</groupId>
425       <artifactId>vpnintent-api</artifactId>
426       <version>${vpnservices.version}</version>
427     </dependency>
428     <dependency>
429       <groupId>${project.groupId}</groupId>
430       <artifactId>vpnintent-impl</artifactId>
431       <version>${vpnservices.version}</version>
432     </dependency>
433     <dependency>
434       <groupId>${project.groupId}</groupId>
435       <artifactId>vpnintent-impl</artifactId>
436       <version>${vpnservices.version}</version>
437       <classifier>config</classifier>
438       <type>xml</type>
439     </dependency>
440   </dependencies>
441 </project>