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