neutron: unbreak of neutron northbound yang model revise
[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   </properties>
46   <dependencyManagement>
47     <dependencies>
48       <!-- project specific dependencies -->
49       <dependency>
50         <groupId>org.opendaylight.controller</groupId>
51         <artifactId>mdsal-artifacts</artifactId>
52         <version>${mdsal.version}</version>
53         <type>pom</type>
54         <scope>import</scope>
55       </dependency>
56       <dependency>
57         <groupId>org.opendaylight.netconf</groupId>
58         <artifactId>restconf-artifacts</artifactId>
59         <version>${restconf.version}</version>
60         <type>pom</type>
61         <scope>import</scope>
62       </dependency>
63     </dependencies>
64   </dependencyManagement>
65   <dependencies>
66     <dependency>
67       <groupId>org.opendaylight.yangtools</groupId>
68       <artifactId>features-yangtools</artifactId>
69       <classifier>features</classifier>
70       <version>${yangtools.version}</version>
71       <type>xml</type>
72       <scope>runtime</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>features-mdsal</artifactId>
77       <classifier>features</classifier>
78       <version>${mdsal.version}</version>
79       <type>xml</type>
80       <scope>runtime</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.mdsal.model</groupId>
84       <artifactId>features-mdsal-model</artifactId>
85       <version>${mdsal.model.version}</version>
86       <classifier>features</classifier>
87       <type>xml</type>
88       <scope>runtime</scope>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.ovsdb</groupId>
92       <artifactId>southbound-features</artifactId>
93       <version>${ovsdb.version}</version>
94       <classifier>features</classifier>
95       <type>xml</type>
96       <scope>runtime</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.ovsdb</groupId>
100       <artifactId>hwvtepsouthbound-features</artifactId>
101       <version>${ovsdb.version}</version>
102       <classifier>features</classifier>
103       <type>xml</type>
104       <scope>runtime</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.openflowplugin</groupId>
108       <artifactId>features-openflowplugin</artifactId>
109       <classifier>features</classifier>
110       <version>${openflowplugin.version}</version>
111       <type>xml</type>
112       <scope>runtime</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.netconf</groupId>
116       <artifactId>features-restconf</artifactId>
117       <classifier>features</classifier>
118       <version>${restconf.version}</version>
119       <type>xml</type>
120       <scope>runtime</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.neutron</groupId>
124       <artifactId>features-neutron</artifactId>
125       <classifier>features</classifier>
126       <version>${neutron.version}</version>
127       <type>xml</type>
128       <scope>runtime</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.opendaylight.genius</groupId>
132       <artifactId>genius-features</artifactId>
133       <version>${genius.version}</version>
134       <classifier>features</classifier>
135       <type>xml</type>
136       <scope>runtime</scope>
137     </dependency>
138     <dependency>
139       <groupId>${project.groupId}</groupId>
140       <artifactId>vpnmanager-impl</artifactId>
141       <version>${vpnmanager.version}</version>
142     </dependency>
143     <dependency>
144       <groupId>${project.groupId}</groupId>
145       <artifactId>vpnmanager-impl</artifactId>
146       <version>${vpnmanager.version}</version>
147       <classifier>config</classifier>
148       <type>xml</type>
149     </dependency>
150     <dependency>
151       <groupId>org.opendaylight.genius</groupId>
152       <artifactId>interfacemgr-shell</artifactId>
153       <version>${interfacemgr.version}</version>
154     </dependency>
155     <dependency>
156       <groupId>${project.groupId}</groupId>
157       <artifactId>elanmanager-impl</artifactId>
158       <version>${elanmgr.version}</version>
159     </dependency>
160     <dependency>
161       <groupId>${project.groupId}</groupId>
162       <artifactId>elanmanager-impl</artifactId>
163       <version>${elanmgr.version}</version>
164       <classifier>config</classifier>
165       <type>xml</type>
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-impl</artifactId>
207       <version>${vpnservices.version}</version>
208       <classifier>config</classifier>
209       <type>xml</type>
210     </dependency>
211     <dependency>
212       <groupId>${project.groupId}</groupId>
213       <artifactId>bgpmanager-api</artifactId>
214       <version>${vpnservices.version}</version>
215     </dependency>
216     <dependency>
217       <groupId>${project.groupId}</groupId>
218       <artifactId>model-bgp</artifactId>
219       <version>2013.07.15.9-SNAPSHOT</version>
220     </dependency>
221     <dependency>
222       <groupId>${project.groupId}</groupId>
223       <artifactId>fibmanager-impl</artifactId>
224       <version>${fibmanager.version}</version>
225     </dependency>
226     <dependency>
227       <groupId>${project.groupId}</groupId>
228       <artifactId>fibmanager-impl</artifactId>
229       <version>${fibmanager.version}</version>
230       <classifier>config</classifier>
231       <type>xml</type>
232     </dependency>
233     <dependency>
234       <groupId>${project.groupId}</groupId>
235       <artifactId>fibmanager-shell</artifactId>
236       <version>${fibmanager.version}</version>
237     </dependency>
238     <dependency>
239       <groupId>${project.groupId}</groupId>
240       <artifactId>fibmanager-api</artifactId>
241       <version>${fibmanager.version}</version>
242     </dependency>
243     <dependency>
244       <groupId>${project.groupId}</groupId>
245       <artifactId>dhcpservice-impl</artifactId>
246       <version>${vpnservices.version}</version>
247     </dependency>
248     <dependency>
249       <groupId>${project.groupId}</groupId>
250       <artifactId>dhcpservice-impl</artifactId>
251       <version>${vpnservices.version}</version>
252       <classifier>config</classifier>
253       <type>xml</type>
254     </dependency>
255     <dependency>
256       <groupId>${project.groupId}</groupId>
257       <artifactId>dhcpservice-api</artifactId>
258       <version>${vpnservices.version}</version>
259     </dependency>
260     <dependency>
261       <groupId>${project.groupId}</groupId>
262       <artifactId>natservice-impl</artifactId>
263       <version>${vpnservices.version}</version>
264     </dependency>
265     <dependency>
266       <groupId>${project.groupId}</groupId>
267       <artifactId>natservice-impl</artifactId>
268       <version>${vpnservices.version}</version>
269       <classifier>config</classifier>
270       <type>xml</type>
271     </dependency>
272     <dependency>
273       <groupId>${project.groupId}</groupId>
274       <artifactId>natservice-api</artifactId>
275       <version>${vpnservices.version}</version>
276     </dependency>
277     <dependency>
278       <groupId>${project.groupId}</groupId>
279       <artifactId>aclservice-api</artifactId>
280       <version>${vpnservices.version}</version>
281     </dependency>
282     <dependency>
283       <groupId>${project.groupId}</groupId>
284       <artifactId>aclservice-impl</artifactId>
285       <version>${vpnservices.version}</version>
286     </dependency>
287     <dependency>
288       <groupId>${project.groupId}</groupId>
289       <artifactId>aclservice-impl</artifactId>
290       <version>${vpnservices.version}</version>
291       <classifier>config</classifier>
292       <type>xml</type>
293     </dependency>
294     <dependency>
295       <groupId>${project.groupId}</groupId>
296       <artifactId>neutronvpn-api</artifactId>
297       <version>${neutronvpn.version}</version>
298     </dependency>
299     <dependency>
300       <groupId>${project.groupId}</groupId>
301       <artifactId>neutronvpn-impl</artifactId>
302       <version>${neutronvpn.version}</version>
303     </dependency>
304     <dependency>
305       <groupId>${project.groupId}</groupId>
306       <artifactId>neutronvpn-impl</artifactId>
307       <version>${neutronvpn.version}</version>
308       <classifier>config</classifier>
309       <type>xml</type>
310     </dependency>
311     <dependency>
312       <groupId>${project.groupId}</groupId>
313       <artifactId>neutronvpn-shell</artifactId>
314       <version>${neutronvpn.version}</version>
315     </dependency>
316     <dependency>
317       <groupId>org.apache.thrift</groupId>
318       <artifactId>libthrift</artifactId>
319       <version>0.9.1</version>
320     </dependency>
321     <dependency>
322       <groupId>org.opendaylight.openflowplugin</groupId>
323       <artifactId>features-openflowplugin-extension</artifactId>
324       <classifier>features</classifier>
325       <version>${openflowplugin.version}</version>
326       <type>xml</type>
327       <scope>runtime</scope>
328     </dependency>
329     <dependency>
330       <groupId>commons-net</groupId>
331       <artifactId>commons-net</artifactId>
332     </dependency>
333   </dependencies>
334
335   <!--
336       Maven Site Configuration
337
338       The following configuration is necessary for maven-site-plugin to
339       correctly identify the correct deployment path for OpenDaylight Maven
340       sites.
341   -->
342   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
343
344   <distributionManagement>
345     <site>
346       <id>opendaylight-site</id>
347       <url>${nexus.site.url}/${project.artifactId}/</url>
348     </site>
349   </distributionManagement>
350 </project>