Merge "Spec for ITM Tunnel Auto-config feature."
[genius.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.odlparent</groupId>
15     <artifactId>features-parent</artifactId>
16     <version>1.8.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>genius-features</artifactId>
22   <version>0.2.0-SNAPSHOT</version>
23   <name>${project.artifactId}</name>
24
25   <prerequisites>
26     <maven>3.1.1</maven>
27   </prerequisites>
28
29   <properties>
30     <openflowplugin.version>0.4.0-SNAPSHOT</openflowplugin.version>
31     <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
32     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
33     <mdsal.version>1.5.0-SNAPSHOT</mdsal.version>
34     <restconf.version>1.5.0-SNAPSHOT</restconf.version>
35     <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
36     <dluxapps.version>0.5.0-SNAPSHOT</dluxapps.version>
37     <liblldp.version>0.12.0-SNAPSHOT</liblldp.version>
38     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
39     <infrautils.version>1.1.0-SNAPSHOT</infrautils.version>
40   </properties>
41
42   <dependencyManagement>
43     <dependencies>
44       <!-- project specific dependencies -->
45       <dependency>
46         <groupId>org.opendaylight.controller</groupId>
47         <artifactId>mdsal-artifacts</artifactId>
48         <version>${mdsal.version}</version>
49         <type>pom</type>
50         <scope>import</scope>
51       </dependency>
52       <dependency>
53         <groupId>org.opendaylight.netconf</groupId>
54         <artifactId>restconf-artifacts</artifactId>
55         <version>${restconf.version}</version>
56         <type>pom</type>
57         <scope>import</scope>
58       </dependency>
59       <dependency>
60         <groupId>org.opendaylight.yangtools</groupId>
61         <artifactId>yangtools-artifacts</artifactId>
62         <version>${yangtools.version}</version>
63         <type>pom</type>
64         <scope>import</scope>
65       </dependency>
66     </dependencies>
67   </dependencyManagement>
68
69   <dependencies>
70     <dependency>
71       <groupId>org.opendaylight.yangtools</groupId>
72       <artifactId>features-yangtools</artifactId>
73       <classifier>features</classifier>
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.controller</groupId>
87       <artifactId>features-mdsal</artifactId>
88       <classifier>features</classifier>
89       <type>xml</type>
90       <scope>runtime</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.dluxapps</groupId>
94       <artifactId>features-dluxapps</artifactId>
95       <classifier>features</classifier>
96       <version>${dluxapps.version}</version>
97       <type>xml</type>
98       <scope>runtime</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.ovsdb</groupId>
102       <artifactId>southbound-features</artifactId>
103       <version>${ovsdb.version}</version>
104       <classifier>features</classifier>
105       <type>xml</type>
106       <scope>runtime</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.ovsdb</groupId>
110       <artifactId>hwvtepsouthbound-features</artifactId>
111       <version>${ovsdb.version}</version>
112       <classifier>features</classifier>
113       <type>xml</type>
114       <scope>runtime</scope>
115     </dependency>
116     <dependency>
117       <groupId>org.opendaylight.openflowplugin</groupId>
118       <artifactId>features-openflowplugin</artifactId>
119       <classifier>features</classifier>
120       <version>${openflowplugin.version}</version>
121       <type>xml</type>
122       <scope>runtime</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.opendaylight.openflowplugin</groupId>
126       <artifactId>features-openflowplugin-extension</artifactId>
127       <classifier>features</classifier>
128       <version>${openflowplugin.version}</version>
129       <type>xml</type>
130       <scope>runtime</scope>
131     </dependency>
132     <dependency>
133       <groupId>org.opendaylight.netconf</groupId>
134       <artifactId>features-restconf</artifactId>
135       <classifier>features</classifier>
136       <version>${restconf.version}</version>
137       <type>xml</type>
138       <scope>runtime</scope>
139     </dependency>
140     <dependency>
141       <groupId>${project.groupId}</groupId>
142       <artifactId>interfacemanager-impl</artifactId>
143       <version>${project.version}</version>
144     </dependency>
145     <dependency>
146       <groupId>${project.groupId}</groupId>
147       <artifactId>interfacemanager-impl</artifactId>
148       <version>${project.version}</version>
149       <type>xml</type>
150       <classifier>config</classifier>
151     </dependency>
152     <dependency>
153       <groupId>${project.groupId}</groupId>
154       <artifactId>interfacemanager-api</artifactId>
155       <version>${project.version}</version>
156     </dependency>
157     <dependency>
158       <groupId>${project.groupId}</groupId>
159       <artifactId>interfacemanager-shell</artifactId>
160       <version>${project.version}</version>
161     </dependency>
162     <dependency>
163       <groupId>${project.groupId}</groupId>
164       <artifactId>idmanager-impl</artifactId>
165       <version>${project.version}</version>
166     </dependency>
167     <dependency>
168       <groupId>${project.groupId}</groupId>
169       <artifactId>idmanager-api</artifactId>
170       <version>${project.version}</version>
171     </dependency>
172     <dependency>
173       <groupId>${project.groupId}</groupId>
174       <artifactId>idmanager-shell</artifactId>
175       <version>${project.version}</version>
176     </dependency>
177     <dependency>
178       <groupId>${project.groupId}</groupId>
179       <artifactId>lockmanager-impl</artifactId>
180       <version>${project.version}</version>
181     </dependency>
182     <dependency>
183       <groupId>${project.groupId}</groupId>
184       <artifactId>lockmanager-impl</artifactId>
185       <version>${project.version}</version>
186       <type>xml</type>
187       <classifier>config</classifier>
188     </dependency>
189     <dependency>
190       <groupId>${project.groupId}</groupId>
191       <artifactId>lockmanager-api</artifactId>
192       <version>${project.version}</version>
193     </dependency>
194     <dependency>
195       <groupId>${project.groupId}</groupId>
196       <artifactId>mdsalutil-impl</artifactId>
197       <version>${project.version}</version>
198     </dependency>
199     <dependency>
200       <groupId>${project.groupId}</groupId>
201       <artifactId>mdsalutil-impl</artifactId>
202       <version>${project.version}</version>
203       <type>xml</type>
204       <classifier>config</classifier>
205     </dependency>
206     <dependency>
207       <groupId>${project.groupId}</groupId>
208       <artifactId>mdsalutil-api</artifactId>
209       <version>${project.version}</version>
210     </dependency>
211     <dependency>
212       <groupId>${project.groupId}</groupId>
213       <artifactId>arputil-impl</artifactId>
214       <version>${project.version}</version>
215     </dependency>
216     <dependency>
217       <groupId>${project.groupId}</groupId>
218       <artifactId>arputil-api</artifactId>
219       <version>${project.version}</version>
220     </dependency>
221     <dependency>
222       <groupId>${project.groupId}</groupId>
223       <artifactId>alivenessmonitor-impl</artifactId>
224       <version>${project.version}</version>
225     </dependency>
226     <dependency>
227       <groupId>${project.groupId}</groupId>
228       <artifactId>alivenessmonitor-api</artifactId>
229       <version>${project.version}</version>
230     </dependency>
231     <dependency>
232       <groupId>${project.groupId}</groupId>
233       <artifactId>itm-impl</artifactId>
234       <version>${project.version}</version>
235     </dependency>
236     <dependency>
237       <groupId>${project.groupId}</groupId>
238       <artifactId>itm-api</artifactId>
239       <version>${project.version}</version>
240     </dependency>
241     <dependency>
242       <groupId>${project.groupId}</groupId>
243       <artifactId>alarmmanager</artifactId>
244       <version>${project.version}</version>
245     </dependency>
246     <dependency>
247       <groupId>${project.groupId}</groupId>
248       <artifactId>countermanager</artifactId>
249       <version>${project.version}</version>
250     </dependency>
251     <dependency>
252       <groupId>${project.groupId}</groupId>
253       <artifactId>fcaps-api</artifactId>
254       <version>${project.version}</version>
255     </dependency>
256     <dependency>
257       <groupId>${project.groupId}</groupId>
258       <artifactId>fcapsapplication-jmxapi</artifactId>
259       <version>${project.version}</version>
260     </dependency>
261     <dependency>
262       <groupId>${project.groupId}</groupId>
263       <artifactId>fcapsapplication-impl</artifactId>
264       <version>${project.version}</version>
265     </dependency>
266     <dependency>
267       <groupId>${project.groupId}</groupId>
268       <artifactId>fcapsapplication-impl</artifactId>
269       <version>${project.version}</version>
270       <type>xml</type>
271       <classifier>config</classifier>
272     </dependency>
273     <dependency>
274       <groupId>${project.groupId}</groupId>
275       <artifactId>resourcemanager-api</artifactId>
276       <version>${project.version}</version>
277     </dependency>
278     <dependency>
279       <groupId>${project.groupId}</groupId>
280       <artifactId>resourcemanager-impl</artifactId>
281       <version>${project.version}</version>
282     </dependency>
283     <dependency>
284       <groupId>javax.inject</groupId>
285       <artifactId>javax.inject</artifactId>
286     </dependency>
287     <dependency>
288       <groupId>org.opendaylight.infrautils</groupId>
289       <artifactId>infrautils-features</artifactId>
290       <version>${infrautils.version}</version>
291       <classifier>features</classifier>
292       <type>xml</type>
293     </dependency>
294   </dependencies>
295 </project>