Merge "Supporting DHCP as a Service"
[netvirt.git] / vpnservice / 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.netvirt</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     <genius.version>0.1.0-SNAPSHOT</genius.version>
34     <arputil.version>${genius.version}</arputil.version>
35     <mdsalutil.version>${genius.version}</mdsalutil.version>
36     <vpnmanager.version>${vpnservices.version}</vpnmanager.version>
37     <interfacemgr.version>${genius.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>${genius.version}</lockmanager.version>
42     <idmanager.version>${genius.version}</idmanager.version>
43     <itm.version>${genius.version}</itm.version>
44     <neutronvpn.version>${vpnservices.version}</neutronvpn.version>
45     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
46   </properties>
47   <dependencyManagement>
48     <dependencies>
49       <!-- project specific dependencies -->
50       <dependency>
51         <groupId>org.opendaylight.controller</groupId>
52         <artifactId>mdsal-artifacts</artifactId>
53         <version>${mdsal.version}</version>
54         <type>pom</type>
55         <scope>import</scope>
56       </dependency>
57       <dependency>
58         <groupId>org.opendaylight.netconf</groupId>
59         <artifactId>restconf-artifacts</artifactId>
60         <version>${restconf.version}</version>
61         <type>pom</type>
62         <scope>import</scope>
63       </dependency>
64     </dependencies>
65   </dependencyManagement>
66   <dependencies>
67     <dependency>
68       <groupId>org.opendaylight.yangtools</groupId>
69       <artifactId>features-yangtools</artifactId>
70       <classifier>features</classifier>
71       <version>${yangtools.version}</version>
72       <type>xml</type>
73       <scope>runtime</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>features-mdsal</artifactId>
78       <classifier>features</classifier>
79       <version>${mdsal.version}</version>
80       <type>xml</type>
81       <scope>runtime</scope>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.mdsal.model</groupId>
85       <artifactId>features-mdsal-model</artifactId>
86       <version>${mdsal.model.version}</version>
87       <classifier>features</classifier>
88       <type>xml</type>
89       <scope>runtime</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.ovsdb</groupId>
93       <artifactId>southbound-features</artifactId>
94       <version>${ovsdb.version}</version>
95       <classifier>features</classifier>
96       <type>xml</type>
97       <scope>runtime</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.ovsdb</groupId>
101       <artifactId>hwvtepsouthbound-features</artifactId>
102       <version>${ovsdb.version}</version>
103       <classifier>features</classifier>
104       <type>xml</type>
105       <scope>runtime</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.openflowplugin</groupId>
109       <artifactId>features-openflowplugin</artifactId>
110       <classifier>features</classifier>
111       <version>${openflowplugin.version}</version>
112       <type>xml</type>
113       <scope>runtime</scope>
114     </dependency>
115     <dependency>
116       <groupId>org.opendaylight.netconf</groupId>
117       <artifactId>features-restconf</artifactId>
118       <classifier>features</classifier>
119       <version>${restconf.version}</version>
120       <type>xml</type>
121       <scope>runtime</scope>
122     </dependency>
123     <dependency>
124       <groupId>org.opendaylight.neutron</groupId>
125       <artifactId>features-neutron</artifactId>
126       <classifier>features</classifier>
127       <version>${neutron.version}</version>
128       <type>xml</type>
129       <scope>runtime</scope>
130     </dependency>
131     <dependency>
132       <groupId>org.opendaylight.genius</groupId>
133       <artifactId>genius-features</artifactId>
134       <version>${genius.version}</version>
135       <classifier>features</classifier>
136       <type>xml</type>
137       <scope>runtime</scope>
138     </dependency>
139     <dependency>
140       <groupId>${project.groupId}</groupId>
141       <artifactId>vpnmanager-impl</artifactId>
142       <version>${vpnmanager.version}</version>
143     </dependency>
144     <dependency>
145       <groupId>${project.groupId}</groupId>
146       <artifactId>vpnmanager-impl</artifactId>
147       <version>${vpnmanager.version}</version>
148       <classifier>config</classifier>
149       <type>xml</type>
150     </dependency>
151     <dependency>
152       <groupId>org.opendaylight.genius</groupId>
153       <artifactId>interfacemgr-shell</artifactId>
154       <version>${interfacemgr.version}</version>
155     </dependency>
156     <dependency>
157       <groupId>${project.groupId}</groupId>
158       <artifactId>elanmanager-impl</artifactId>
159       <version>${elanmgr.version}</version>
160     </dependency>
161     <dependency>
162       <groupId>${project.groupId}</groupId>
163       <artifactId>elanmanager-impl</artifactId>
164       <version>${elanmgr.version}</version>
165       <classifier>config</classifier>
166       <type>xml</type>
167     </dependency>
168     <dependency>
169       <groupId>${project.groupId}</groupId>
170       <artifactId>elanmanager-api</artifactId>
171       <version>${elanmgr.version}</version>
172     </dependency>
173     <dependency>
174         <groupId>org.opendaylight.controller</groupId>
175         <artifactId>liblldp</artifactId>
176         <version>${liblldp.version}</version>
177     </dependency>
178     <dependency>
179       <groupId>org.opendaylight.genius</groupId>
180       <artifactId>alivenessmonitor-impl</artifactId>
181       <version>${genius.version}</version>
182     </dependency>
183     <dependency>
184       <groupId>org.opendaylight.genius</groupId>
185       <artifactId>alivenessmonitor-impl</artifactId>
186       <version>${genius.version}</version>
187       <classifier>config</classifier>
188       <type>xml</type>
189     </dependency>
190     <dependency>
191       <groupId>org.opendaylight.genius</groupId>
192       <artifactId>alivenessmonitor-api</artifactId>
193       <version>${genius.version}</version>
194     </dependency>
195     <dependency>
196       <groupId>${project.groupId}</groupId>
197       <artifactId>vpnmanager-api</artifactId>
198       <version>${vpnmanager.version}</version>
199     </dependency>
200     <dependency>
201       <groupId>${project.groupId}</groupId>
202       <artifactId>bgpmanager-impl</artifactId>
203       <version>${vpnservices.version}</version>
204     </dependency>
205     <dependency>
206       <groupId>${project.groupId}</groupId>
207       <artifactId>bgpmanager-impl</artifactId>
208       <version>${vpnservices.version}</version>
209       <classifier>config</classifier>
210       <type>xml</type>
211     </dependency>
212     <dependency>
213       <groupId>${project.groupId}</groupId>
214       <artifactId>bgpmanager-api</artifactId>
215       <version>${vpnservices.version}</version>
216     </dependency>
217     <dependency>
218       <groupId>${project.groupId}</groupId>
219       <artifactId>model-bgp</artifactId>
220       <version>2013.07.15.9-SNAPSHOT</version>
221     </dependency>
222     <dependency>
223       <groupId>${project.groupId}</groupId>
224       <artifactId>fibmanager-impl</artifactId>
225       <version>${fibmanager.version}</version>
226     </dependency>
227     <dependency>
228       <groupId>${project.groupId}</groupId>
229       <artifactId>fibmanager-impl</artifactId>
230       <version>${fibmanager.version}</version>
231       <classifier>config</classifier>
232       <type>xml</type>
233     </dependency>
234     <dependency>
235       <groupId>${project.groupId}</groupId>
236       <artifactId>fibmanager-shell</artifactId>
237       <version>${fibmanager.version}</version>
238     </dependency>
239     <dependency>
240       <groupId>${project.groupId}</groupId>
241       <artifactId>fibmanager-api</artifactId>
242       <version>${fibmanager.version}</version>
243     </dependency>
244     <dependency>
245       <groupId>${project.groupId}</groupId>
246       <artifactId>dhcpservice-impl</artifactId>
247       <version>${vpnservices.version}</version>
248     </dependency>
249     <dependency>
250       <groupId>${project.groupId}</groupId>
251       <artifactId>dhcpservice-impl</artifactId>
252       <version>${vpnservices.version}</version>
253       <classifier>config</classifier>
254       <type>xml</type>
255     </dependency>
256     <dependency>
257       <groupId>${project.groupId}</groupId>
258       <artifactId>dhcpservice-api</artifactId>
259       <version>${vpnservices.version}</version>
260     </dependency>
261     <dependency>
262       <groupId>${project.groupId}</groupId>
263       <artifactId>natservice-impl</artifactId>
264       <version>${vpnservices.version}</version>
265     </dependency>
266     <dependency>
267       <groupId>${project.groupId}</groupId>
268       <artifactId>natservice-impl</artifactId>
269       <version>${vpnservices.version}</version>
270       <classifier>config</classifier>
271       <type>xml</type>
272     </dependency>
273     <dependency>
274       <groupId>${project.groupId}</groupId>
275       <artifactId>natservice-api</artifactId>
276       <version>${vpnservices.version}</version>
277     </dependency>
278     <dependency>
279       <groupId>${project.groupId}</groupId>
280       <artifactId>aclservice-api</artifactId>
281       <version>${vpnservices.version}</version>
282     </dependency>
283     <dependency>
284       <groupId>${project.groupId}</groupId>
285       <artifactId>aclservice-impl</artifactId>
286       <version>${vpnservices.version}</version>
287     </dependency>
288     <dependency>
289       <groupId>${project.groupId}</groupId>
290       <artifactId>aclservice-impl</artifactId>
291       <version>${vpnservices.version}</version>
292       <classifier>config</classifier>
293       <type>xml</type>
294     </dependency>
295     <dependency>
296       <groupId>${project.groupId}</groupId>
297       <artifactId>ipv6service-api</artifactId>
298       <version>${vpnservices.version}</version>
299     </dependency>
300     <dependency>
301       <groupId>${project.groupId}</groupId>
302       <artifactId>ipv6service-impl</artifactId>
303       <version>${vpnservices.version}</version>
304     </dependency>
305     <dependency>
306       <groupId>${project.groupId}</groupId>
307       <artifactId>ipv6service-impl</artifactId>
308       <version>${vpnservices.version}</version>
309       <classifier>config</classifier>
310       <type>xml</type>
311     </dependency>
312     <dependency>
313       <groupId>${project.groupId}</groupId>
314       <artifactId>neutronvpn-api</artifactId>
315       <version>${neutronvpn.version}</version>
316     </dependency>
317     <dependency>
318       <groupId>${project.groupId}</groupId>
319       <artifactId>neutronvpn-impl</artifactId>
320       <version>${neutronvpn.version}</version>
321     </dependency>
322     <dependency>
323       <groupId>${project.groupId}</groupId>
324       <artifactId>neutronvpn-impl</artifactId>
325       <version>${neutronvpn.version}</version>
326       <classifier>config</classifier>
327       <type>xml</type>
328     </dependency>
329     <dependency>
330       <groupId>${project.groupId}</groupId>
331       <artifactId>neutronvpn-shell</artifactId>
332       <version>${neutronvpn.version}</version>
333     </dependency>
334     <dependency>
335       <groupId>org.apache.thrift</groupId>
336       <artifactId>libthrift</artifactId>
337       <version>0.9.1</version>
338     </dependency>
339     <dependency>
340       <groupId>org.opendaylight.openflowplugin</groupId>
341       <artifactId>features-openflowplugin-extension</artifactId>
342       <classifier>features</classifier>
343       <version>${openflowplugin.version}</version>
344       <type>xml</type>
345       <scope>runtime</scope>
346     </dependency>
347     <dependency>
348       <groupId>commons-net</groupId>
349       <artifactId>commons-net</artifactId>
350     </dependency>
351   </dependencies>
352
353   <!--
354       Maven Site Configuration
355
356       The following configuration is necessary for maven-site-plugin to
357       correctly identify the correct deployment path for OpenDaylight Maven
358       sites.
359   -->
360   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
361
362   <distributionManagement>
363     <site>
364       <id>opendaylight-site</id>
365       <url>${nexus.site.url}/${project.artifactId}/</url>
366     </site>
367   </distributionManagement>
368 </project>