45606579a835d4d845e23b50088a1ea51b7313a0
[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>3.0.2</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     <!-- User facing single features. Alphabetical order -->
54     <!-- FIXME: How to explain to feature-repo-parent it shall not list single features from repo dependencies? -->
55     <profiles>
56         <!-- AAA -->
57         <profile>
58             <id>aaa</id>
59             <activation>
60                 <activeByDefault>true</activeByDefault>
61             </activation>
62             <dependencies>
63                 <dependency>
64                     <groupId>org.opendaylight.aaa</groupId>
65                     <artifactId>features-aaa</artifactId>
66                     <classifier>features</classifier>
67                     <type>xml</type>
68                 </dependency>
69             </dependencies>
70         </profile>
71         <!-- ALTO -->
72         <profile>
73             <id>alto</id>
74             <activation>
75                 <!-- Removed for the odlparent 3 / yangtools 2 migration -->
76                 <activeByDefault>false</activeByDefault>
77             </activation>
78             <dependencies>
79                 <dependency>
80                     <groupId>org.opendaylight.alto</groupId>
81                     <artifactId>features4-alto</artifactId>
82                     <classifier>features</classifier>
83                     <type>xml</type>
84                 </dependency>
85             </dependencies>
86         </profile>
87         <!-- BGPCEP -->
88         <profile>
89             <id>bgpcep</id>
90             <activation>
91                 <activeByDefault>true</activeByDefault>
92             </activation>
93             <dependencies>
94                 <dependency>
95                     <groupId>org.opendaylight.bgpcep</groupId>
96                     <artifactId>features-bgp</artifactId>
97                     <classifier>features</classifier>
98                     <type>xml</type>
99                 </dependency>
100                 <dependency>
101                     <groupId>org.opendaylight.bgpcep</groupId>
102                     <artifactId>features-bmp</artifactId>
103                     <classifier>features</classifier>
104                     <type>xml</type>
105                 </dependency>
106                 <dependency>
107                     <groupId>org.opendaylight.bgpcep</groupId>
108                     <artifactId>features-bgpcep-extras</artifactId>
109                     <classifier>features</classifier>
110                     <type>xml</type>
111                 </dependency>
112                 <dependency>
113                     <groupId>org.opendaylight.bgpcep</groupId>
114                     <artifactId>features-pcep</artifactId>
115                     <classifier>features</classifier>
116                     <type>xml</type>
117                 </dependency>
118                 <dependency>
119                     <groupId>org.opendaylight.bgpcep</groupId>
120                     <artifactId>features-rsvp</artifactId>
121                     <classifier>features</classifier>
122                     <type>xml</type>
123                 </dependency>
124             </dependencies>
125         </profile>
126         <!-- BIER -->
127         <profile>
128             <id>bier</id>
129             <!-- Disabled due to failed merge job -->
130             <activation>
131                 <activeByDefault>false</activeByDefault>
132             </activation>
133             <dependencies>
134                 <dependency>
135                     <groupId>org.opendaylight.bier</groupId>
136                     <artifactId>features-bier</artifactId>
137                     <classifier>features</classifier>
138                     <type>xml</type>
139                 </dependency>
140             </dependencies>
141         </profile>
142         <!-- COE -->
143         <profile>
144             <id>coe</id>
145             <activation>
146                 <activeByDefault>true</activeByDefault>
147             </activation>
148             <dependencies>
149                 <dependency>
150                     <groupId>org.opendaylight.coe</groupId>
151                     <artifactId>features-coe</artifactId>
152                     <classifier>features</classifier>
153                     <type>xml</type>
154                 </dependency>
155             </dependencies>
156         </profile>
157         <!-- Controller -->
158         <profile>
159             <id>controller</id>
160             <activation>
161                 <activeByDefault>true</activeByDefault>
162             </activation>
163             <dependencies>
164                 <dependency>
165                     <groupId>org.opendaylight.controller</groupId>
166                     <artifactId>features-extras</artifactId>
167                     <classifier>features</classifier>
168                     <type>xml</type>
169                 </dependency>
170                 <dependency>
171                     <groupId>org.opendaylight.controller</groupId>
172                     <artifactId>features-mdsal</artifactId>
173                     <classifier>features</classifier>
174                     <type>xml</type>
175                 </dependency>
176                 <dependency>
177                     <groupId>org.opendaylight.controller</groupId>
178                     <artifactId>features-mdsal-benchmark</artifactId>
179                     <classifier>features</classifier>
180                     <type>xml</type>
181                 </dependency>
182                 <dependency>
183                     <groupId>org.opendaylight.controller</groupId>
184                     <artifactId>features-mdsal-trace</artifactId>
185                     <classifier>features</classifier>
186                     <type>xml</type>
187                 </dependency>
188             </dependencies>
189         </profile>
190         <!-- Daexim -->
191         <profile>
192             <id>daexim</id>
193             <activation>
194                 <activeByDefault>true</activeByDefault>
195             </activation>
196             <dependencies>
197                 <dependency>
198                     <groupId>org.opendaylight.daexim</groupId>
199                     <artifactId>daexim-features</artifactId>
200                     <classifier>features</classifier>
201                     <type>xml</type>
202                 </dependency>
203             </dependencies>
204         </profile>
205         <!-- Distribution -->
206         <profile>
207             <id>distribution</id>
208             <activation>
209                 <activeByDefault>true</activeByDefault>
210             </activation>
211             <dependencies>
212                 <dependency>
213                     <groupId>${project.groupId}</groupId>
214                     <artifactId>features-distribution</artifactId>
215                     <classifier>features</classifier>
216                     <type>xml</type>
217                 </dependency>
218             </dependencies>
219         </profile>
220         <!-- Dlux -->
221         <profile>
222             <id>dlux</id>
223             <activation>
224                 <activeByDefault>true</activeByDefault>
225             </activation>
226             <dependencies>
227                 <dependency>
228                     <groupId>org.opendaylight.dlux</groupId>
229                     <artifactId>features-dlux</artifactId>
230                     <classifier>features</classifier>
231                     <type>xml</type>
232                 </dependency>
233             </dependencies>
234         </profile>
235         <!-- DluxApps -->
236         <profile>
237             <id>dluxapps</id>
238             <activation>
239                 <activeByDefault>true</activeByDefault>
240             </activation>
241             <dependencies>
242                 <dependency>
243                     <groupId>org.opendaylight.dluxapps</groupId>
244                     <artifactId>features-dluxapps</artifactId>
245                     <classifier>features</classifier>
246                     <type>xml</type>
247                 </dependency>
248             </dependencies>
249         </profile>
250         <!-- Eman -->
251         <profile>
252             <id>emacs</id>
253             <activation>
254                 <!-- Removed for the odlparent 3 / yangtools 2 migration -->
255                 <activeByDefault>false</activeByDefault>
256             </activation>
257             <dependencies>
258                 <dependency>
259                     <groupId>org.opendaylight.eman</groupId>
260                     <artifactId>features-eman</artifactId>
261                     <classifier>features</classifier>
262                     <type>xml</type>
263                 </dependency>
264             </dependencies>
265         </profile>
266         <!-- FAAS -->
267         <profile>
268             <id>faas</id>
269             <activation>
270                 <!-- Removed for the odlparent 3 / yangtools 2 migration -->
271                 <activeByDefault>false</activeByDefault>
272             </activation>
273             <dependencies>
274                 <dependency>
275                     <groupId>org.opendaylight.faas</groupId>
276                     <artifactId>features4-faas</artifactId>
277                     <classifier>features</classifier>
278                     <type>xml</type>
279                 </dependency>
280             </dependencies>
281         </profile>
282         <!-- Genius -->
283         <profile>
284             <id>genius</id>
285             <activation>
286                 <activeByDefault>true</activeByDefault>
287             </activation>
288             <dependencies>
289                 <dependency>
290                     <groupId>org.opendaylight.genius</groupId>
291                     <artifactId>genius-features</artifactId>
292                     <classifier>features</classifier>
293                     <type>xml</type>
294                 </dependency>
295             </dependencies>
296         </profile>
297         <!-- GROUPBASEDPOLICY -->
298         <profile>
299             <id>groupbasedpolicy</id>
300             <activation>
301                 <!-- Removed for the odlparent 3 / yangtools 2 migration -->
302                 <activeByDefault>false</activeByDefault>
303             </activation>
304             <dependencies>
305                 <dependency>
306                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
307                     <artifactId>features-groupbasedpolicy</artifactId>
308                     <type>xml</type>
309                     <classifier>features</classifier>
310                 </dependency>
311             </dependencies>
312         </profile>
313         <!-- Honeycomb/VBD -->
314         <profile>
315             <id>honeycombvbd</id>
316             <activation>
317                 <activeByDefault>true</activeByDefault>
318             </activation>
319             <dependencies>
320                 <dependency>
321                     <groupId>org.opendaylight.honeycomb.vbd</groupId>
322                     <artifactId>vbd-features</artifactId>
323                     <classifier>features</classifier>
324                     <type>xml</type>
325                 </dependency>
326             </dependencies>
327         </profile>
328         <!-- InfraUtils -->
329         <profile>
330             <id>infrautils</id>
331             <activation>
332                 <activeByDefault>true</activeByDefault>
333             </activation>
334             <dependencies>
335                 <dependency>
336                     <groupId>org.opendaylight.infrautils</groupId>
337                     <artifactId>infrautils-features</artifactId>
338                     <classifier>features</classifier>
339                     <type>xml</type>
340                 </dependency>
341             </dependencies>
342         </profile>
343         <!-- L2switch -->
344         <profile>
345             <id>l2switch</id>
346             <activation>
347                 <activeByDefault>true</activeByDefault>
348             </activation>
349             <dependencies>
350                 <dependency>
351                     <groupId>org.opendaylight.l2switch</groupId>
352                     <artifactId>features-l2switch</artifactId>
353                     <classifier>features</classifier>
354                     <type>xml</type>
355                 </dependency>
356             </dependencies>
357         </profile>
358         <!-- LISP Flow Mapping -->
359         <profile>
360             <id>lispflowmapping</id>
361             <activation>
362                 <activeByDefault>true</activeByDefault>
363             </activation>
364             <dependencies>
365                 <dependency>
366                     <groupId>org.opendaylight.lispflowmapping</groupId>
367                     <artifactId>features-lispflowmapping</artifactId>
368                     <classifier>features</classifier>
369                     <type>xml</type>
370                 </dependency>
371             </dependencies>
372         </profile>
373         <!-- FIXME: Add Mdsal -->
374         <!-- NEMO -->
375         <profile>
376             <id>nemo</id>
377             <activation>
378                 <!-- Removed for the odlparent 3 / yangtools 2 migration -->
379                 <activeByDefault>false</activeByDefault>
380             </activation>
381             <dependencies>
382                 <dependency>
383                     <groupId>org.opendaylight.nemo</groupId>
384                     <artifactId>nemo-features</artifactId>
385                     <classifier>features</classifier>
386                     <type>xml</type>
387                 </dependency>
388             </dependencies>
389         </profile>
390         <!-- Netconf -->
391         <profile>
392             <id>netconf</id>
393             <activation>
394                 <activeByDefault>true</activeByDefault>
395             </activation>
396             <dependencies>
397                 <dependency>
398                     <groupId>org.opendaylight.netconf</groupId>
399                     <artifactId>features-netconf</artifactId>
400                     <classifier>features</classifier>
401                     <type>xml</type>
402                 </dependency>
403                 <dependency>
404                     <groupId>org.opendaylight.netconf</groupId>
405                     <artifactId>features-netconf-connector</artifactId>
406                     <classifier>features</classifier>
407                     <type>xml</type>
408                 </dependency>
409                 <dependency>
410                     <groupId>org.opendaylight.netconf</groupId>
411                     <artifactId>features-restconf</artifactId>
412                     <classifier>features</classifier>
413                     <type>xml</type>
414                 </dependency>
415                 <dependency>
416                     <groupId>org.opendaylight.netconf</groupId>
417                     <artifactId>features-yanglib</artifactId>
418                     <classifier>features</classifier>
419                     <type>xml</type>
420                 </dependency>
421             </dependencies>
422         </profile>
423         <!-- Netvirt -->
424         <profile>
425             <id>netvirt</id>
426             <activation>
427                 <activeByDefault>true</activeByDefault>
428             </activation>
429             <dependencies>
430                 <dependency>
431                     <groupId>org.opendaylight.netvirt</groupId>
432                     <artifactId>vpnservice-features</artifactId>
433                     <classifier>features</classifier>
434                     <type>xml</type>
435                 </dependency>
436             </dependencies>
437         </profile>
438         <!-- Neutron Northbound -->
439         <profile>
440             <id>neutron</id>
441             <activation>
442                 <activeByDefault>true</activeByDefault>
443             </activation>
444             <dependencies>
445                 <dependency>
446                     <groupId>org.opendaylight.neutron</groupId>
447                     <artifactId>features-neutron-service</artifactId>
448                     <classifier>features</classifier>
449                     <type>xml</type>
450                 </dependency>
451             </dependencies>
452         </profile>
453         <!-- NIC -->
454         <profile>
455             <id>nic</id>
456             <activation>
457                 <!-- Removed for the odlparent 3 / yangtools 2 migration -->
458                 <activeByDefault>false</activeByDefault>
459             </activation>
460             <dependencies>
461                 <dependency>
462                     <groupId>org.opendaylight.nic</groupId>
463                     <artifactId>features-nic</artifactId>
464                     <classifier>features</classifier>
465                     <type>xml</type>
466                 </dependency>
467             </dependencies>
468         </profile>
469         <!-- OCPplugin -->
470         <profile>
471             <id>ocpplugin</id>
472             <activation>
473                 <!-- Inactive -->
474                 <activeByDefault>false</activeByDefault>
475             </activation>
476             <dependencies>
477                 <dependency>
478                     <groupId>org.opendaylight.ocpplugin</groupId>
479                     <artifactId>features-ocpplugin</artifactId>
480                     <classifier>features</classifier>
481                     <type>xml</type>
482                 </dependency>
483             </dependencies>
484         </profile>
485         <!-- ODL Parent -->
486         <profile>
487             <id>odlparent</id>
488             <activation>
489                 <activeByDefault>true</activeByDefault>
490             </activation>
491             <dependencies>
492                 <dependency>
493                     <groupId>org.opendaylight.odlparent</groupId>
494                     <artifactId>features-akka</artifactId>
495                     <classifier>features</classifier>
496                     <type>xml</type>
497                 </dependency>
498                 <dependency>
499                     <groupId>org.opendaylight.odlparent</groupId>
500                     <artifactId>features-odlparent</artifactId>
501                     <classifier>features</classifier>
502                     <type>xml</type>
503                 </dependency>
504             </dependencies>
505         </profile>
506         <!-- OF-CONFIG -->
507         <profile>
508             <id>ofconfig</id>
509             <activation>
510                 <!-- Removed for the odlparent 3 / yangtools 2 migration -->
511                 <activeByDefault>false</activeByDefault>
512             </activation>
513             <dependencies>
514                 <dependency>
515                     <groupId>org.opendaylight.of-config</groupId>
516                     <artifactId>features-of-config</artifactId>
517                     <type>xml</type>
518                     <classifier>features</classifier>
519                 </dependency>
520             </dependencies>
521         </profile>
522         <!-- OpenflowPlugin -->
523         <profile>
524             <id>openflowplugin</id>
525             <activation>
526                 <activeByDefault>true</activeByDefault>
527             </activation>
528             <dependencies>
529                 <dependency>
530                     <groupId>org.opendaylight.openflowplugin</groupId>
531                     <artifactId>features-openflowplugin</artifactId>
532                     <classifier>features</classifier>
533                     <type>xml</type>
534                 </dependency>
535                 <dependency>
536                     <groupId>org.opendaylight.openflowplugin</groupId>
537                     <artifactId>features-openflowplugin-extension</artifactId>
538                     <classifier>features</classifier>
539                     <type>xml</type>
540                 </dependency>
541             </dependencies>
542         </profile>
543         <!-- OVSDB -->
544         <profile>
545             <id>ovsdb</id>
546             <activation>
547                 <activeByDefault>true</activeByDefault>
548             </activation>
549             <dependencies>
550                 <dependency>
551                     <groupId>org.opendaylight.ovsdb</groupId>
552                     <artifactId>library-features</artifactId>
553                     <classifier>features</classifier>
554                     <type>xml</type>
555                 </dependency>
556                 <dependency>
557                     <groupId>org.opendaylight.ovsdb</groupId>
558                     <artifactId>hwvtepsouthbound-features</artifactId>
559                     <classifier>features</classifier>
560                     <type>xml</type>
561                 </dependency>
562                 <dependency>
563                     <groupId>org.opendaylight.ovsdb</groupId>
564                     <artifactId>southbound-features</artifactId>
565                     <classifier>features</classifier>
566                     <type>xml</type>
567                 </dependency>
568             </dependencies>
569         </profile>
570         <!-- P4 Plugin -->
571         <profile>
572             <id>p4plugin</id>
573             <activation>
574                 <!-- Removed for the odlparent 3 / yangtools 2 migration -->
575                 <activeByDefault>false</activeByDefault>
576             </activation>
577             <dependencies>
578                 <dependency>
579                     <groupId>org.opendaylight.p4plugin</groupId>
580                     <artifactId>features-p4plugin</artifactId>
581                     <classifier>features</classifier>
582                     <type>xml</type>
583                 </dependency>
584             </dependencies>
585         </profile>
586         <!-- Packetcable -->
587         <profile>
588             <id>packetcable</id>
589             <activation>
590                 <!-- Removed for the odlparent 3 / yangtools 2 migration -->
591                 <activeByDefault>false</activeByDefault>
592             </activation>
593             <dependencies>
594                 <dependency>
595                     <groupId>org.opendaylight.packetcable</groupId>
596                     <artifactId>features4-packetcable-policy</artifactId>
597                     <classifier>features</classifier>
598                     <type>xml</type>
599                 </dependency>
600             </dependencies>
601         </profile>
602         <!-- SFC -->
603         <profile>
604             <id>sfc</id>
605             <activation>
606                 <activeByDefault>true</activeByDefault>
607             </activation>
608             <dependencies>
609                 <dependency>
610                     <groupId>org.opendaylight.sfc</groupId>
611                     <artifactId>features4-sfc</artifactId>
612                     <classifier>features</classifier>
613                     <type>xml</type>
614                 </dependency>
615             </dependencies>
616         </profile>
617         <!-- SNMP -->
618         <profile>
619             <id>snmp</id>
620             <activation>
621                 <activeByDefault>true</activeByDefault>
622             </activation>
623             <dependencies>
624                 <dependency>
625                     <groupId>org.opendaylight.snmp</groupId>
626                     <artifactId>features-snmp</artifactId>
627                     <classifier>features</classifier>
628                     <type>xml</type>
629                 </dependency>
630             </dependencies>
631         </profile>
632         <!-- SNMP4SDN -->
633         <profile>
634             <id>snmp4sdn</id>
635             <activation>
636                 <!-- Removed for the odlparent 3 / yangtools 2 migration -->
637                 <activeByDefault>false</activeByDefault>
638             </activation>
639             <dependencies>
640                 <dependency>
641                     <groupId>org.opendaylight.snmp4sdn</groupId>
642                     <artifactId>features-snmp4sdn</artifactId>
643                     <classifier>features</classifier>
644                     <type>xml</type>
645                 </dependency>
646             </dependencies>
647         </profile>
648         <!-- SXP -->
649         <profile>
650             <id>sxp</id>
651             <activation>
652                 <activeByDefault>true</activeByDefault>
653             </activation>
654             <dependencies>
655                 <dependency>
656                     <groupId>org.opendaylight.sxp</groupId>
657                     <artifactId>features-sxp</artifactId>
658                     <classifier>features</classifier>
659                     <type>xml</type>
660                 </dependency>
661             </dependencies>
662         </profile>
663         <!-- TSDR  -->
664         <profile>
665             <id>tsdr</id>
666             <activation>
667                 <activeByDefault>true</activeByDefault>
668             </activation>
669             <dependencies>
670                 <dependency>
671                     <groupId>org.opendaylight.tsdr</groupId>
672                     <artifactId>features-tsdr</artifactId>
673                     <classifier>features</classifier>
674                     <type>xml</type>
675                 </dependency>
676             </dependencies>
677         </profile>
678         <!-- Unimgr -->
679         <profile>
680             <id>unimgr</id>
681             <activation>
682                 <!-- Removed for the odlparent 3 / yangtools 2 migration -->
683                 <activeByDefault>false</activeByDefault>
684             </activation>
685             <dependencies>
686                 <dependency>
687                     <groupId>org.opendaylight.unimgr</groupId>
688                     <artifactId>features4-unimgr</artifactId>
689                     <classifier>features</classifier>
690                     <type>xml</type>
691                 </dependency>
692             </dependencies>
693         </profile>
694         <!-- USC -->
695         <!-- Removed for the odlparent 3 / yangtools 2 migration -->
696         <profile>
697             <id>usc</id>
698             <activation>
699                 <activeByDefault>false</activeByDefault>
700             </activation>
701             <dependencies>
702                 <dependency>
703                     <groupId>org.opendaylight.usc</groupId>
704                     <artifactId>usc-features</artifactId>
705                     <classifier>features</classifier>
706                     <type>xml</type>
707                 </dependency>
708             </dependencies>
709         </profile>
710         <!-- VTN -->
711         <profile>
712             <id>vtn</id>
713             <activation>
714                 <!-- Removed for the odlparent 3 / yangtools 2 migration -->
715                 <activeByDefault>false</activeByDefault>
716             </activation>
717             <dependencies>
718                 <dependency>
719                     <groupId>org.opendaylight.vtn</groupId>
720                     <artifactId>features-vtn-manager</artifactId>
721                     <classifier>features</classifier>
722                     <type>xml</type>
723                 </dependency>
724             </dependencies>
725         </profile>
726         <!-- FIXME: Add Yangtools -->
727     </profiles>
728 </project>