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