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