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