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