Add pkt handling to DHCPService
[vpnservice.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 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.6.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.vpnservice</groupId>
16   <artifactId>vpnservice-features</artifactId>
17   <version>0.2.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.3.0-SNAPSHOT</mdsal.version>
25     <openflowplugin.version>0.2.0-SNAPSHOT</openflowplugin.version>
26     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
27     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
28     <mdsal.model.version>0.8.0-SNAPSHOT</mdsal.model.version>
29     <vpnservices.version>0.2.0-SNAPSHOT</vpnservices.version>
30     <ovsdb.version>1.2.1-SNAPSHOT</ovsdb.version>
31     <liblldp.version>0.10.0-SNAPSHOT</liblldp.version>
32     <neutron.version>0.6.0-SNAPSHOT</neutron.version>
33     <arputil.version>${vpnservices.version}</arputil.version>
34     <mdsalutil.version>${vpnservices.version}</mdsalutil.version>
35     <vpnmanager.version>${vpnservices.version}</vpnmanager.version>
36     <interfacemgr.version>${vpnservices.version}</interfacemgr.version>
37     <nexthopmgr.version>${vpnservices.version}</nexthopmgr.version>
38     <fibmanager.version>${vpnservices.version}</fibmanager.version>
39     <lockmanager.version>${vpnservices.version}</lockmanager.version>
40     <idmanager.version>${vpnservices.version}</idmanager.version>
41     <itm.version>${vpnservices.version}</itm.version>
42   </properties>
43   <dependencyManagement>
44     <dependencies>
45       <!-- project specific dependencies -->
46       <dependency>
47         <groupId>org.opendaylight.controller</groupId>
48         <artifactId>mdsal-artifacts</artifactId>
49         <version>${mdsal.version}</version>
50         <type>pom</type>
51         <scope>import</scope>
52       </dependency>
53       <dependency>
54         <groupId>org.opendaylight.netconf</groupId>
55         <artifactId>restconf-artifacts</artifactId>
56         <version>${restconf.version}</version>
57         <type>pom</type>
58         <scope>import</scope>
59       </dependency>
60     </dependencies>
61   </dependencyManagement>
62   <dependencies>
63     <dependency>
64       <groupId>org.opendaylight.yangtools</groupId>
65       <artifactId>features-yangtools</artifactId>
66       <classifier>features</classifier>
67       <version>${yangtools.version}</version>
68       <type>xml</type>
69       <scope>runtime</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>features-mdsal</artifactId>
74       <classifier>features</classifier>
75       <version>${mdsal.version}</version>
76       <type>xml</type>
77       <scope>runtime</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.mdsal.model</groupId>
81       <artifactId>features-mdsal-model</artifactId>
82       <version>${mdsal.model.version}</version>
83       <classifier>features</classifier>
84       <type>xml</type>
85       <scope>runtime</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.ovsdb</groupId>
89       <artifactId>features-ovsdb</artifactId>
90       <version>${ovsdb.version}</version>
91       <classifier>features</classifier>
92       <type>xml</type>
93       <scope>runtime</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.openflowplugin</groupId>
97       <artifactId>features-openflowplugin</artifactId>
98       <classifier>features</classifier>
99       <version>${openflowplugin.version}</version>
100       <type>xml</type>
101       <scope>runtime</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.netconf</groupId>
105       <artifactId>features-restconf</artifactId>
106       <classifier>features</classifier>
107       <version>${restconf.version}</version>
108       <type>xml</type>
109       <scope>runtime</scope>
110     </dependency>
111     <dependency>
112       <groupId>org.opendaylight.neutron</groupId>
113       <artifactId>features-neutron</artifactId>
114       <classifier>features</classifier>
115       <version>${neutron.version}</version>
116       <type>xml</type>
117       <scope>runtime</scope>
118     </dependency>
119     <dependency>
120       <groupId>org.opendaylight.neutron</groupId>
121       <artifactId>dummyprovider</artifactId>
122       <version>${neutron.version}</version>
123     </dependency>
124     <dependency>
125       <groupId>${project.groupId}</groupId>
126       <artifactId>vpnmanager-impl</artifactId>
127       <version>${vpnmanager.version}</version>
128     </dependency>
129     <dependency>
130       <groupId>${project.groupId}</groupId>
131       <artifactId>vpnmanager-impl</artifactId>
132       <version>${vpnmanager.version}</version>
133       <classifier>config</classifier>
134       <type>xml</type>
135     </dependency>
136     <dependency>
137       <groupId>${project.groupId}</groupId>
138       <artifactId>mdsalutil-impl</artifactId>
139       <version>${mdsalutil.version}</version>
140     </dependency>
141     <dependency>
142       <groupId>${project.groupId}</groupId>
143       <artifactId>arputil-api</artifactId>
144       <version>${arputil.version}</version>
145     </dependency>
146     <dependency>
147       <groupId>${project.groupId}</groupId>
148       <artifactId>arputil-impl</artifactId>
149       <version>${arputil.version}</version>
150       <classifier>config</classifier>
151       <type>xml</type>
152     </dependency>
153      <dependency>
154       <groupId>${project.groupId}</groupId>
155       <artifactId>arputil-impl</artifactId>
156       <version>${arputil.version}</version>
157     </dependency>
158     <dependency>
159       <groupId>${project.groupId}</groupId>
160       <artifactId>mdsalutil-impl</artifactId>
161       <version>${mdsalutil.version}</version>
162       <classifier>config</classifier>
163       <type>xml</type>
164     </dependency>
165     <dependency>
166       <groupId>${project.groupId}</groupId>
167       <artifactId>mdsalutil-api</artifactId>
168       <version>${mdsalutil.version}</version>
169     </dependency>
170     <dependency>
171       <groupId>${project.groupId}</groupId>
172       <artifactId>interfacemgr-impl</artifactId>
173       <version>${interfacemgr.version}</version>
174     </dependency>
175     <dependency>
176       <groupId>${project.groupId}</groupId>
177       <artifactId>interfacemgr-impl</artifactId>
178       <version>${interfacemgr.version}</version>
179       <classifier>config</classifier>
180       <type>xml</type>
181     </dependency>
182     <dependency>
183       <groupId>${project.groupId}</groupId>
184       <artifactId>interfacemgr-api</artifactId>
185       <version>${interfacemgr.version}</version>
186     </dependency>
187     <dependency>
188         <groupId>org.opendaylight.controller</groupId>
189         <artifactId>liblldp</artifactId>
190         <version>${liblldp.version}</version>
191     </dependency>
192     <dependency>
193       <groupId>${project.groupId}</groupId>
194       <artifactId>alivenessmonitor-impl</artifactId>
195       <version>${vpnservices.version}</version>
196     </dependency>
197     <dependency>
198       <groupId>${project.groupId}</groupId>
199       <artifactId>alivenessmonitor-impl</artifactId>
200       <version>${vpnservices.version}</version>
201       <classifier>config</classifier>
202       <type>xml</type>
203     </dependency>
204     <dependency>
205       <groupId>${project.groupId}</groupId>
206       <artifactId>alivenessmonitor-api</artifactId>
207       <version>${vpnservices.version}</version>
208     </dependency>
209     <dependency>
210       <groupId>${project.groupId}</groupId>
211       <artifactId>vpnmanager-api</artifactId>
212       <version>${vpnmanager.version}</version>
213     </dependency>
214     <dependency>
215       <groupId>${project.groupId}</groupId>
216       <artifactId>bgpmanager-impl</artifactId>
217       <version>${vpnservices.version}</version>
218     </dependency>
219     <dependency>
220       <groupId>${project.groupId}</groupId>
221       <artifactId>bgpmanager-impl</artifactId>
222       <version>${vpnservices.version}</version>
223       <classifier>config</classifier>
224       <type>xml</type>
225     </dependency>
226     <dependency>
227       <groupId>${project.groupId}</groupId>
228       <artifactId>bgpmanager-api</artifactId>
229       <version>${vpnservices.version}</version>
230     </dependency>
231     <dependency>
232       <groupId>${project.groupId}</groupId>
233       <artifactId>model-bgp</artifactId>
234       <version>2013.07.15.8-SNAPSHOT</version>
235     </dependency>
236     <dependency>
237       <groupId>${project.groupId}</groupId>
238       <artifactId>nexthopmgr-impl</artifactId>
239       <version>${nexthopmgr.version}</version>
240     </dependency>
241     <dependency>
242       <groupId>${project.groupId}</groupId>
243       <artifactId>nexthopmgr-impl</artifactId>
244       <version>${nexthopmgr.version}</version>
245       <classifier>config</classifier>
246       <type>xml</type>
247     </dependency>
248     <dependency>
249       <groupId>${project.groupId}</groupId>
250       <artifactId>nexthopmgr-api</artifactId>
251       <version>${nexthopmgr.version}</version>
252     </dependency>
253     <dependency>
254       <groupId>${project.groupId}</groupId>
255       <artifactId>fibmanager-impl</artifactId>
256       <version>${fibmanager.version}</version>
257     </dependency>
258     <dependency>
259       <groupId>${project.groupId}</groupId>
260       <artifactId>fibmanager-impl</artifactId>
261       <version>${fibmanager.version}</version>
262       <classifier>config</classifier>
263       <type>xml</type>
264     </dependency>
265     <dependency>
266       <groupId>${project.groupId}</groupId>
267       <artifactId>fibmanager-api</artifactId>
268       <version>${fibmanager.version}</version>
269     </dependency>
270     <dependency>
271       <groupId>${project.groupId}</groupId>
272       <artifactId>lockmanager-impl</artifactId>
273       <version>${lockmanager.version}</version>
274     </dependency>
275     <dependency>
276       <groupId>${project.groupId}</groupId>
277       <artifactId>lockmanager-impl</artifactId>
278       <version>${lockmanager.version}</version>
279       <classifier>config</classifier>
280       <type>xml</type>
281     </dependency>
282     <dependency>
283       <groupId>${project.groupId}</groupId>
284       <artifactId>lockmanager-api</artifactId>
285       <version>${lockmanager.version}</version>
286     </dependency>
287     <dependency>
288       <groupId>${project.groupId}</groupId>
289       <artifactId>idmanager-impl</artifactId>
290       <version>${idmanager.version}</version>
291     </dependency>
292     <dependency>
293       <groupId>${project.groupId}</groupId>
294       <artifactId>idmanager-impl</artifactId>
295       <version>${idmanager.version}</version>
296       <classifier>config</classifier>
297       <type>xml</type>
298     </dependency>
299     <dependency>
300       <groupId>${project.groupId}</groupId>
301       <artifactId>idmanager-api</artifactId>
302       <version>${idmanager.version}</version>
303     </dependency>
304     <dependency>
305       <groupId>org.opendaylight.vpnservice</groupId>
306       <artifactId>itm-impl</artifactId>
307       <version>${itm.version}</version>
308     </dependency>
309     <dependency>
310       <groupId>org.opendaylight.vpnservice</groupId>
311       <artifactId>itm-impl</artifactId>
312       <version>${itm.version}</version>
313       <classifier>config</classifier>
314       <type>xml</type>
315     </dependency>
316     <dependency>
317       <groupId>${project.groupId}</groupId>
318       <artifactId>dhcpservice-impl</artifactId>
319       <version>${vpnservices.version}</version>
320     </dependency>
321     <dependency>
322       <groupId>${project.groupId}</groupId>
323       <artifactId>dhcpservice-impl</artifactId>
324       <version>${vpnservices.version}</version>
325       <classifier>config</classifier>
326       <type>xml</type>
327     </dependency>
328     <dependency>
329       <groupId>${project.groupId}</groupId>
330       <artifactId>dhcpservice-api</artifactId>
331       <version>${vpnservices.version}</version>
332     </dependency>
333     <dependency>
334       <groupId>org.apache.thrift</groupId>
335       <artifactId>libthrift</artifactId>
336       <version>0.9.1</version>
337     </dependency>
338     <dependency>
339       <groupId>commons-net</groupId>
340       <artifactId>commons-net</artifactId>
341       <version>${commons.net.version}</version>
342     </dependency>
343   </dependencies>
344 </project>