Merge "Distinguish internal vs external tunnels"
[vpnservice.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 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     <arputil.version>${vpnservices.version}</arputil.version>
32     <mdsalutil.version>${vpnservices.version}</mdsalutil.version>
33     <vpnmanager.version>${vpnservices.version}</vpnmanager.version>
34     <interfacemgr.version>${vpnservices.version}</interfacemgr.version>
35     <nexthopmgr.version>${vpnservices.version}</nexthopmgr.version>
36     <fibmanager.version>${vpnservices.version}</fibmanager.version>
37     <lockmanager.version>${vpnservices.version}</lockmanager.version>
38     <idmanager.version>${vpnservices.version}</idmanager.version>
39         <itm.version>${vpnservices.version}</itm.version>
40   </properties>
41   <dependencyManagement>
42     <dependencies>
43       <!-- project specific dependencies -->
44       <dependency>
45         <groupId>org.opendaylight.controller</groupId>
46         <artifactId>mdsal-artifacts</artifactId>
47         <version>${mdsal.version}</version>
48         <type>pom</type>
49         <scope>import</scope>
50       </dependency>
51       <dependency>
52         <groupId>org.opendaylight.netconf</groupId>
53         <artifactId>restconf-artifacts</artifactId>
54         <version>${restconf.version}</version>
55         <type>pom</type>
56         <scope>import</scope>
57       </dependency>
58     </dependencies>
59   </dependencyManagement>
60   <dependencies>
61     <dependency>
62       <groupId>org.opendaylight.yangtools</groupId>
63       <artifactId>features-yangtools</artifactId>
64       <classifier>features</classifier>
65       <version>${yangtools.version}</version>
66       <type>xml</type>
67       <scope>runtime</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>features-mdsal</artifactId>
72       <classifier>features</classifier>
73       <version>${mdsal.version}</version>
74       <type>xml</type>
75       <scope>runtime</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.mdsal.model</groupId>
79       <artifactId>features-mdsal-model</artifactId>
80       <version>${mdsal.model.version}</version>
81       <classifier>features</classifier>
82       <type>xml</type>
83       <scope>runtime</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.ovsdb</groupId>
87       <artifactId>features-ovsdb</artifactId>
88       <version>${ovsdb.version}</version>
89       <classifier>features</classifier>
90       <type>xml</type>
91       <scope>runtime</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.openflowplugin</groupId>
95       <artifactId>features-openflowplugin</artifactId>
96       <classifier>features</classifier>
97       <version>${openflowplugin.version}</version>
98       <type>xml</type>
99       <scope>runtime</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.netconf</groupId>
103       <artifactId>features-restconf</artifactId>
104       <classifier>features</classifier>
105       <version>${restconf.version}</version>
106       <type>xml</type>
107       <scope>runtime</scope>
108     </dependency>
109     <dependency>
110       <groupId>${project.groupId}</groupId>
111       <artifactId>vpnmanager-impl</artifactId>
112       <version>${vpnmanager.version}</version>
113     </dependency>
114     <dependency>
115       <groupId>${project.groupId}</groupId>
116       <artifactId>vpnmanager-impl</artifactId>
117       <version>${vpnmanager.version}</version>
118       <classifier>config</classifier>
119       <type>xml</type>
120     </dependency>
121     <dependency>
122       <groupId>${project.groupId}</groupId>
123       <artifactId>mdsalutil-impl</artifactId>
124       <version>${mdsalutil.version}</version>
125     </dependency>
126     <dependency>
127       <groupId>${project.groupId}</groupId>
128       <artifactId>arputil-api</artifactId>
129       <version>${arputil.version}</version>
130     </dependency>
131     <dependency>
132       <groupId>${project.groupId}</groupId>
133       <artifactId>arputil-impl</artifactId>
134       <version>${arputil.version}</version>
135       <classifier>config</classifier>
136       <type>xml</type>
137     </dependency>
138      <dependency>
139       <groupId>${project.groupId}</groupId>
140       <artifactId>arputil-impl</artifactId>
141       <version>${arputil.version}</version>
142     </dependency>
143     <dependency>
144       <groupId>${project.groupId}</groupId>
145       <artifactId>mdsalutil-impl</artifactId>
146       <version>${mdsalutil.version}</version>
147       <classifier>config</classifier>
148       <type>xml</type>
149     </dependency>
150     <dependency>
151       <groupId>${project.groupId}</groupId>
152       <artifactId>mdsalutil-api</artifactId>
153       <version>${mdsalutil.version}</version>
154     </dependency>
155     <dependency>
156       <groupId>${project.groupId}</groupId>
157       <artifactId>interfacemgr-impl</artifactId>
158       <version>${interfacemgr.version}</version>
159     </dependency>
160     <dependency>
161       <groupId>${project.groupId}</groupId>
162       <artifactId>interfacemgr-impl</artifactId>
163       <version>${interfacemgr.version}</version>
164       <classifier>config</classifier>
165       <type>xml</type>
166     </dependency>
167     <dependency>
168       <groupId>${project.groupId}</groupId>
169       <artifactId>interfacemgr-api</artifactId>
170       <version>${interfacemgr.version}</version>
171     </dependency>
172     <dependency>
173       <groupId>${project.groupId}</groupId>
174       <artifactId>vpnmanager-api</artifactId>
175       <version>${vpnmanager.version}</version>
176     </dependency>
177     <dependency>
178       <groupId>${project.groupId}</groupId>
179       <artifactId>bgpmanager-impl</artifactId>
180       <version>${vpnservices.version}</version>
181     </dependency>
182     <dependency>
183       <groupId>${project.groupId}</groupId>
184       <artifactId>bgpmanager-impl</artifactId>
185       <version>${vpnservices.version}</version>
186       <classifier>config</classifier>
187       <type>xml</type>
188     </dependency>
189     <dependency>
190       <groupId>${project.groupId}</groupId>
191       <artifactId>bgpmanager-api</artifactId>
192       <version>${vpnservices.version}</version>
193     </dependency>
194     <dependency>
195       <groupId>${project.groupId}</groupId>
196       <artifactId>model-bgp</artifactId>
197       <version>2013.07.15.8-SNAPSHOT</version>
198     </dependency>
199         <dependency>
200       <groupId>${project.groupId}</groupId>
201       <artifactId>nexthopmgr-impl</artifactId>
202       <version>${nexthopmgr.version}</version>
203     </dependency>
204     <dependency>
205       <groupId>${project.groupId}</groupId>
206       <artifactId>nexthopmgr-impl</artifactId>
207       <version>${nexthopmgr.version}</version>
208       <classifier>config</classifier>
209       <type>xml</type>
210     </dependency>
211     <dependency>
212       <groupId>${project.groupId}</groupId>
213       <artifactId>nexthopmgr-api</artifactId>
214       <version>${nexthopmgr.version}</version>
215     </dependency>
216         <dependency>
217       <groupId>${project.groupId}</groupId>
218       <artifactId>fibmanager-impl</artifactId>
219       <version>${fibmanager.version}</version>
220     </dependency>
221     <dependency>
222       <groupId>${project.groupId}</groupId>
223       <artifactId>fibmanager-impl</artifactId>
224       <version>${fibmanager.version}</version>
225       <classifier>config</classifier>
226       <type>xml</type>
227     </dependency>
228     <dependency>
229       <groupId>${project.groupId}</groupId>
230       <artifactId>fibmanager-api</artifactId>
231       <version>${fibmanager.version}</version>
232     </dependency>
233     <dependency>
234       <groupId>${project.groupId}</groupId>
235       <artifactId>lockmanager-impl</artifactId>
236       <version>${lockmanager.version}</version>
237     </dependency>
238     <dependency>
239       <groupId>${project.groupId}</groupId>
240       <artifactId>lockmanager-impl</artifactId>
241       <version>${lockmanager.version}</version>
242       <classifier>config</classifier>
243       <type>xml</type>
244     </dependency>
245     <dependency>
246       <groupId>${project.groupId}</groupId>
247       <artifactId>lockmanager-api</artifactId>
248       <version>${lockmanager.version}</version>
249     </dependency>
250     <dependency>
251       <groupId>${project.groupId}</groupId>
252       <artifactId>idmanager-impl</artifactId>
253       <version>${idmanager.version}</version>
254     </dependency>
255     <dependency>
256       <groupId>${project.groupId}</groupId>
257       <artifactId>idmanager-impl</artifactId>
258       <version>${idmanager.version}</version>
259       <classifier>config</classifier>
260       <type>xml</type>
261     </dependency>
262     <dependency>
263       <groupId>${project.groupId}</groupId>
264       <artifactId>idmanager-api</artifactId>
265       <version>${idmanager.version}</version>
266     </dependency>
267         <dependency>
268       <groupId>org.opendaylight.vpnservice</groupId>
269       <artifactId>itm-impl</artifactId>
270       <version>${itm.version}</version>
271     </dependency>
272     <dependency>
273       <groupId>org.opendaylight.vpnservice</groupId>
274       <artifactId>itm-impl</artifactId>
275       <version>${itm.version}</version>
276       <classifier>config</classifier>
277       <type>xml</type>
278     </dependency>
279     <dependency>
280       <groupId>org.apache.thrift</groupId>
281       <artifactId>libthrift</artifactId>
282       <version>0.9.1</version>
283     </dependency>
284   </dependencies>
285 </project>