8f8f7298bde8bd43cf4fbb055ebe749fb959cc4f
[integration/distribution.git] / features / repos / index / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2017 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <modelVersion>4.0.0</modelVersion>
14     <parent>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <artifactId>feature-repo-parent</artifactId>
17         <version>2.0.5</version>
18         <relativePath/>
19     </parent>
20     <groupId>org.opendaylight.integration</groupId>
21     <artifactId>features-index</artifactId>
22     <version>0.8.0-SNAPSHOT</version>
23     <packaging>feature</packaging>
24     <!-- <name> formatting is used by autorelease to parse and notify projects on
25          build failure. Please do not modify this unless you have a good reason. -->
26     <name>ODL :: integration :: ${project.artifactId}</name>
27     <description>Aggregate repository of all ODL repositories with user-facing features.</description>
28     <url>https://wiki.opendaylight.org/view/Integration/Distribution</url>
29     <licenses>
30         <license>
31             <name>Eclipse Public License v1.0</name>
32             <url>http://www.eclipse.org/legal/epl-v10.html</url>
33         </license>
34     </licenses>
35     <!-- FIXME: Add developers section -->
36     <scm>
37         <connection>scm:git:https://git.opendaylight.org/gerrit/integration/distribution.git</connection>
38         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/integration/distribution.git</developerConnection>
39         <url>https://git.opendaylight.org/gerrit/gitweb?p=integration/distribution.git;a=tree;f=features/repos/index;hb=HEAD</url>
40         <tag>HEAD</tag>
41     </scm>
42     <dependencyManagement>
43         <dependencies>
44             <dependency>
45                 <groupId>${project.groupId}</groupId>
46                 <artifactId>all-artifacts</artifactId>
47                 <version>${project.version}</version>
48                 <scope>import</scope>
49                 <type>pom</type>
50             </dependency>
51         </dependencies>
52     </dependencyManagement>
53     <dependencies>
54
55         <!-- User facing single features. Alphabetical order -->
56         <!-- FIXME: How to explain to feature-repo-parent it shall not list single features from repo dependencies? -->
57
58         <!-- AAA -->
59         <dependency>
60             <groupId>org.opendaylight.aaa</groupId>
61             <artifactId>features-aaa</artifactId>
62             <classifier>features</classifier>
63             <type>xml</type>
64         </dependency>
65
66         <!-- ALTO -->
67         <dependency>
68             <groupId>org.opendaylight.alto</groupId>
69             <artifactId>features4-alto</artifactId>
70             <classifier>features</classifier>
71             <type>xml</type>
72         </dependency>
73
74         <!-- BGPCEP -->
75         <dependency>
76             <groupId>org.opendaylight.bgpcep</groupId>
77             <artifactId>features-bgp</artifactId>
78             <classifier>features</classifier>
79             <type>xml</type>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.bgpcep</groupId>
83             <artifactId>features-bmp</artifactId>
84             <classifier>features</classifier>
85             <type>xml</type>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.bgpcep</groupId>
89             <artifactId>features-bgpcep-extras</artifactId>
90             <classifier>features</classifier>
91             <type>xml</type>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.bgpcep</groupId>
95             <artifactId>features-pcep</artifactId>
96             <classifier>features</classifier>
97             <type>xml</type>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.bgpcep</groupId>
101             <artifactId>features-rsvp</artifactId>
102             <classifier>features</classifier>
103             <type>xml</type>
104         </dependency>
105
106         <!-- BIER -->
107         <!-- Comment due to fail merge job
108         <dependency>
109             <groupId>org.opendaylight.bier</groupId>
110             <artifactId>features-bier</artifactId>
111             <classifier>features</classifier>
112             <type>xml</type>
113         </dependency>
114         -->
115
116         <!-- COE -->
117         <dependency>
118             <groupId>org.opendaylight.coe</groupId>
119             <artifactId>features-coe</artifactId>
120             <classifier>features</classifier>
121             <type>xml</type>
122         </dependency>
123
124         <!-- Controller -->
125         <dependency>
126             <groupId>org.opendaylight.controller</groupId>
127             <artifactId>features-extras</artifactId>
128             <classifier>features</classifier>
129             <type>xml</type>
130         </dependency>
131         <dependency>
132             <groupId>org.opendaylight.controller</groupId>
133             <artifactId>features-mdsal</artifactId>
134             <classifier>features</classifier>
135             <type>xml</type>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.controller</groupId>
139             <artifactId>features-mdsal-benchmark</artifactId>
140             <classifier>features</classifier>
141             <type>xml</type>
142         </dependency>
143         <dependency>
144             <groupId>org.opendaylight.controller</groupId>
145             <artifactId>features-mdsal-trace</artifactId>
146             <classifier>features</classifier>
147             <type>xml</type>
148         </dependency>
149
150         <!-- Daexim -->
151         <dependency>
152             <groupId>org.opendaylight.daexim</groupId>
153             <artifactId>daexim-features</artifactId>
154             <classifier>features</classifier>
155             <type>xml</type>
156         </dependency>
157
158         <!-- Distribution -->
159         <dependency>
160             <groupId>${project.groupId}</groupId>
161             <artifactId>features-distribution</artifactId>
162             <classifier>features</classifier>
163             <type>xml</type>
164         </dependency>
165
166         <!-- Dlux -->
167         <dependency>
168             <groupId>org.opendaylight.dlux</groupId>
169             <artifactId>features-dlux</artifactId>
170             <classifier>features</classifier>
171             <type>xml</type>
172         </dependency>
173
174         <!-- DluxApps -->
175         <dependency>
176             <groupId>org.opendaylight.dluxapps</groupId>
177             <artifactId>features-dluxapps</artifactId>
178             <classifier>features</classifier>
179             <type>xml</type>
180         </dependency>
181
182         <!-- Eman -->
183         <dependency>
184             <groupId>org.opendaylight.eman</groupId>
185             <artifactId>features-eman</artifactId>
186             <classifier>features</classifier>
187             <type>xml</type>
188         </dependency>
189
190         <!-- FAAS -->
191         <dependency>
192             <groupId>org.opendaylight.faas</groupId>
193             <artifactId>features4-faas</artifactId>
194             <classifier>features</classifier>
195             <type>xml</type>
196         </dependency>
197
198         <!-- Genius -->
199         <dependency>
200             <groupId>org.opendaylight.genius</groupId>
201             <artifactId>genius-features</artifactId>
202             <classifier>features</classifier>
203             <type>xml</type>
204         </dependency>
205
206         <!-- GROUPBASEDPOLICY -->
207         <dependency>
208             <groupId>org.opendaylight.groupbasedpolicy</groupId>
209             <artifactId>features-groupbasedpolicy</artifactId>
210             <type>xml</type>
211             <classifier>features</classifier>
212         </dependency>
213
214         <!-- Honeycomb/VBD -->
215         <dependency>
216             <groupId>org.opendaylight.honeycomb.vbd</groupId>
217             <artifactId>vbd-features</artifactId>
218             <classifier>features</classifier>
219             <type>xml</type>
220         </dependency>
221
222         <!-- InfraUtils -->
223         <dependency>
224             <groupId>org.opendaylight.infrautils</groupId>
225             <artifactId>infrautils-features</artifactId>
226             <classifier>features</classifier>
227             <type>xml</type>
228         </dependency>
229
230         <!-- L2switch -->
231         <dependency>
232             <groupId>org.opendaylight.l2switch</groupId>
233             <artifactId>features-l2switch</artifactId>
234             <classifier>features</classifier>
235             <type>xml</type>
236         </dependency>
237
238         <!-- NEMO -->
239         <dependency>
240             <groupId>org.opendaylight.nemo</groupId>
241             <artifactId>nemo-features</artifactId>
242             <classifier>features</classifier>
243             <type>xml</type>
244         </dependency>
245
246         <!-- LISP Flow Mapping -->
247         <dependency>
248             <groupId>org.opendaylight.lispflowmapping</groupId>
249             <artifactId>features-lispflowmapping</artifactId>
250             <classifier>features</classifier>
251             <type>xml</type>
252         </dependency>
253
254         <!-- FIXME: Add Mdsal -->
255
256         <!-- Netconf -->
257         <dependency>
258             <groupId>org.opendaylight.netconf</groupId>
259             <artifactId>features-netconf</artifactId>
260             <classifier>features</classifier>
261             <type>xml</type>
262         </dependency>
263         <dependency>
264             <groupId>org.opendaylight.netconf</groupId>
265             <artifactId>features-netconf-connector</artifactId>
266             <classifier>features</classifier>
267             <type>xml</type>
268         </dependency>
269         <dependency>
270             <groupId>org.opendaylight.netconf</groupId>
271             <artifactId>features-restconf</artifactId>
272             <classifier>features</classifier>
273             <type>xml</type>
274         </dependency>
275         <dependency>
276             <groupId>org.opendaylight.netconf</groupId>
277             <artifactId>features-yanglib</artifactId>
278             <classifier>features</classifier>
279             <type>xml</type>
280         </dependency>
281
282         <!-- Netvirt -->
283         <dependency>
284             <groupId>org.opendaylight.netvirt</groupId>
285             <artifactId>vpnservice-features</artifactId>
286             <classifier>features</classifier>
287             <type>xml</type>
288         </dependency>
289
290         <!-- Neutron Northbound -->
291         <dependency>
292             <groupId>org.opendaylight.neutron</groupId>
293             <artifactId>features-neutron-service</artifactId>
294             <classifier>features</classifier>
295             <type>xml</type>
296         </dependency>
297
298         <!-- NIC -->
299         <!-- Comment due to fail merge job
300
301         <dependency>
302             <groupId>org.opendaylight.nic</groupId>
303             <artifactId>features-nic</artifactId>
304             <classifier>features</classifier>
305             <type>xml</type>
306         </dependency>
307         -->
308
309         <!-- OCPplugin -->
310         <!-- Not active project
311         <dependency>
312             <groupId>org.opendaylight.ocpplugin</groupId>
313             <artifactId>features-ocpplugin</artifactId>
314             <classifier>features</classifier>
315             <type>xml</type>
316         </dependency>
317         -->
318
319         <!-- ODL Parent -->
320         <dependency>
321             <groupId>org.opendaylight.odlparent</groupId>
322             <artifactId>features-akka</artifactId>
323             <classifier>features</classifier>
324             <type>xml</type>
325         </dependency>
326         <dependency>
327             <groupId>org.opendaylight.odlparent</groupId>
328             <artifactId>features-odlparent</artifactId>
329             <classifier>features</classifier>
330             <type>xml</type>
331         </dependency>
332
333         <!-- OF-CONFIG -->
334         <dependency>
335             <groupId>org.opendaylight.of-config</groupId>
336             <artifactId>features-of-config</artifactId>
337             <type>xml</type>
338             <classifier>features</classifier>
339         </dependency>
340
341         <!-- OpenflowPlugin -->
342         <dependency>
343             <groupId>org.opendaylight.openflowplugin</groupId>
344             <artifactId>features-openflowplugin</artifactId>
345             <classifier>features</classifier>
346             <type>xml</type>
347         </dependency>
348         <dependency>
349             <groupId>org.opendaylight.openflowplugin</groupId>
350             <artifactId>features-openflowplugin-extension</artifactId>
351             <classifier>features</classifier>
352             <type>xml</type>
353         </dependency>
354
355         <!-- OVSDB -->
356         <dependency>
357             <groupId>org.opendaylight.ovsdb</groupId>
358             <artifactId>library-features</artifactId>
359             <classifier>features</classifier>
360             <type>xml</type>
361         </dependency>
362         <dependency>
363             <groupId>org.opendaylight.ovsdb</groupId>
364             <artifactId>hwvtepsouthbound-features</artifactId>
365             <classifier>features</classifier>
366             <type>xml</type>
367         </dependency>
368         <dependency>
369             <groupId>org.opendaylight.ovsdb</groupId>
370             <artifactId>southbound-features</artifactId>
371             <classifier>features</classifier>
372             <type>xml</type>
373         </dependency>
374
375         <!-- P4 Plugin -->
376         <dependency>
377             <groupId>org.opendaylight.p4plugin</groupId>
378             <artifactId>features-p4plugin</artifactId>
379             <classifier>features</classifier>
380             <type>xml</type>
381         </dependency>
382
383         <!-- Packetcable -->
384         <dependency>
385             <groupId>org.opendaylight.packetcable</groupId>
386             <artifactId>features4-packetcable-policy</artifactId>
387             <classifier>features</classifier>
388             <type>xml</type>
389         </dependency>
390
391         <!-- SFC -->
392         <dependency>
393             <groupId>org.opendaylight.sfc</groupId>
394             <artifactId>features4-sfc</artifactId>
395             <classifier>features</classifier>
396             <type>xml</type>
397         </dependency>
398
399         <!-- SNMP -->
400         <dependency>
401             <groupId>org.opendaylight.snmp</groupId>
402             <artifactId>features-snmp</artifactId>
403             <classifier>features</classifier>
404             <type>xml</type>
405         </dependency>
406
407         <!-- SNMP4SDN -->
408         <dependency>
409             <groupId>org.opendaylight.snmp4sdn</groupId>
410             <artifactId>features-snmp4sdn</artifactId>
411             <classifier>features</classifier>
412             <type>xml</type>
413         </dependency>
414
415         <!-- SXP -->
416         <dependency>
417             <groupId>org.opendaylight.sxp</groupId>
418             <artifactId>features-sxp</artifactId>
419             <classifier>features</classifier>
420             <type>xml</type>
421         </dependency>
422
423         <!-- TSDR  -->
424         <dependency>
425             <groupId>org.opendaylight.tsdr</groupId>
426             <artifactId>features-tsdr</artifactId>
427             <classifier>features</classifier>
428             <type>xml</type>
429         </dependency>
430
431         <!-- Unimgr -->
432         <dependency>
433             <groupId>org.opendaylight.unimgr</groupId>
434             <artifactId>features4-unimgr</artifactId>
435             <classifier>features</classifier>
436             <type>xml</type>
437         </dependency>
438
439         <!-- USC -->
440         <dependency>
441             <groupId>org.opendaylight.usc</groupId>
442             <artifactId>usc-features</artifactId>
443             <classifier>features</classifier>
444             <type>xml</type>
445         </dependency>
446
447         <!-- VTN -->
448         <dependency>
449             <groupId>org.opendaylight.vtn</groupId>
450             <artifactId>features-vtn-manager</artifactId>
451             <classifier>features</classifier>
452             <type>xml</type>
453         </dependency>
454
455         <!-- FIXME: Add Yangtools -->
456
457     </dependencies>
458 </project>