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