eec77a8f361b14a78d98aed493bfd9d8377502b2
[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>6.0.12</version>
16         <relativePath/>
17     </parent>
18     <groupId>org.opendaylight.integration</groupId>
19     <artifactId>features-index</artifactId>
20     <version>0.12.4-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         <!-- BGPCEP -->
71         <profile>
72             <id>bgpcep</id>
73             <activation>
74                 <activeByDefault>true</activeByDefault>
75             </activation>
76             <dependencies>
77                 <dependency>
78                     <groupId>org.opendaylight.bgpcep</groupId>
79                     <artifactId>features-algo</artifactId>
80                     <classifier>features</classifier>
81                     <type>xml</type>
82                 </dependency>
83                 <dependency>
84                     <groupId>org.opendaylight.bgpcep</groupId>
85                     <artifactId>features-bgp</artifactId>
86                     <classifier>features</classifier>
87                     <type>xml</type>
88                 </dependency>
89                 <dependency>
90                     <groupId>org.opendaylight.bgpcep</groupId>
91                     <artifactId>features-bgpcep-extras</artifactId>
92                     <classifier>features</classifier>
93                     <type>xml</type>
94                 </dependency>
95                 <dependency>
96                     <groupId>org.opendaylight.bgpcep</groupId>
97                     <artifactId>features-bmp</artifactId>
98                     <classifier>features</classifier>
99                     <type>xml</type>
100                 </dependency>
101                 <dependency>
102                     <groupId>org.opendaylight.bgpcep</groupId>
103                     <artifactId>features-graph</artifactId>
104                     <classifier>features</classifier>
105                     <type>xml</type>
106                 </dependency>
107                 <dependency>
108                     <groupId>org.opendaylight.bgpcep</groupId>
109                     <artifactId>features-pcep</artifactId>
110                     <classifier>features</classifier>
111                     <type>xml</type>
112                 </dependency>
113                 <dependency>
114                     <groupId>org.opendaylight.bgpcep</groupId>
115                     <artifactId>features-rsvp</artifactId>
116                     <classifier>features</classifier>
117                     <type>xml</type>
118                 </dependency>
119             </dependencies>
120         </profile>
121         <!-- Controller -->
122         <profile>
123             <id>controller</id>
124             <activation>
125                 <activeByDefault>true</activeByDefault>
126             </activation>
127             <dependencies>
128                 <dependency>
129                     <groupId>org.opendaylight.controller</groupId>
130                     <artifactId>features-extras</artifactId>
131                     <classifier>features</classifier>
132                     <type>xml</type>
133                 </dependency>
134                 <dependency>
135                     <groupId>org.opendaylight.controller</groupId>
136                     <artifactId>features-mdsal</artifactId>
137                     <classifier>features</classifier>
138                     <type>xml</type>
139                 </dependency>
140                 <dependency>
141                     <groupId>org.opendaylight.controller</groupId>
142                     <artifactId>features-mdsal-benchmark</artifactId>
143                     <classifier>features</classifier>
144                     <type>xml</type>
145                 </dependency>
146                 <dependency>
147                     <groupId>org.opendaylight.controller</groupId>
148                     <artifactId>features-mdsal-trace</artifactId>
149                     <classifier>features</classifier>
150                     <type>xml</type>
151                 </dependency>
152             </dependencies>
153         </profile>
154         <!-- Daexim -->
155         <profile>
156             <id>daexim</id>
157             <activation>
158                 <activeByDefault>true</activeByDefault>
159             </activation>
160             <dependencies>
161                 <dependency>
162                     <groupId>org.opendaylight.daexim</groupId>
163                     <artifactId>daexim-features</artifactId>
164                     <classifier>features</classifier>
165                     <type>xml</type>
166                 </dependency>
167             </dependencies>
168         </profile>
169         <!-- Genius -->
170         <profile>
171             <id>genius</id>
172             <activation>
173                 <activeByDefault>true</activeByDefault>
174             </activation>
175             <dependencies>
176                 <dependency>
177                     <groupId>org.opendaylight.genius</groupId>
178                     <artifactId>genius-features</artifactId>
179                     <classifier>features</classifier>
180                     <type>xml</type>
181                 </dependency>
182             </dependencies>
183         </profile>
184         <!-- InfraUtils -->
185         <profile>
186             <id>infrautils</id>
187             <activation>
188                 <activeByDefault>true</activeByDefault>
189             </activation>
190             <dependencies>
191                 <dependency>
192                     <groupId>org.opendaylight.infrautils</groupId>
193                     <artifactId>infrautils-features</artifactId>
194                     <classifier>features</classifier>
195                     <type>xml</type>
196                 </dependency>
197             </dependencies>
198         </profile>
199         <!-- jsonrpc -->
200         <profile>
201             <id>jsonrpc</id>
202             <activation>
203                 <activeByDefault>true</activeByDefault>
204             </activation>
205             <dependencies>
206                 <dependency>
207                     <groupId>org.opendaylight.jsonrpc</groupId>
208                     <artifactId>features-jsonrpc</artifactId>
209                     <classifier>features</classifier>
210                     <type>xml</type>
211                 </dependency>
212             </dependencies>
213         </profile>
214         <!-- LISP Flow Mapping -->
215         <profile>
216             <id>lispflowmapping</id>
217             <activation>
218                 <activeByDefault>true</activeByDefault>
219             </activation>
220             <dependencies>
221                 <dependency>
222                     <groupId>org.opendaylight.lispflowmapping</groupId>
223                     <artifactId>features-lispflowmapping</artifactId>
224                     <classifier>features</classifier>
225                     <type>xml</type>
226                 </dependency>
227             </dependencies>
228         </profile>
229         <!-- Mdsal -->
230         <profile>
231             <id>mdsal</id>
232             <activation>
233                 <!-- Note: this is disabled due to naming conflict with
234                      controller's 'features-mdsal', above. -->
235                 <activeByDefault>false</activeByDefault>
236             </activation>
237             <dependencies>
238                 <dependency>
239                     <groupId>org.opendaylight.mdsal</groupId>
240                     <artifactId>features-mdsal</artifactId>
241                     <classifier>features</classifier>
242                     <type>xml</type>
243                 </dependency>
244                 <dependency>
245                     <groupId>org.opendaylight.mdsal</groupId>
246                     <artifactId>features-mdsal-experimental</artifactId>
247                     <classifier>features</classifier>
248                     <type>xml</type>
249                 </dependency>
250             </dependencies>
251         </profile>
252         <!-- Netconf -->
253         <profile>
254             <id>netconf</id>
255             <activation>
256                 <activeByDefault>true</activeByDefault>
257             </activation>
258             <dependencies>
259                 <dependency>
260                     <groupId>org.opendaylight.netconf</groupId>
261                     <artifactId>features-netconf</artifactId>
262                     <classifier>features</classifier>
263                     <type>xml</type>
264                 </dependency>
265                 <dependency>
266                     <groupId>org.opendaylight.netconf</groupId>
267                     <artifactId>features-netconf-connector</artifactId>
268                     <classifier>features</classifier>
269                     <type>xml</type>
270                 </dependency>
271                 <dependency>
272                     <groupId>org.opendaylight.netconf</groupId>
273                     <artifactId>features-restconf</artifactId>
274                     <classifier>features</classifier>
275                     <type>xml</type>
276                 </dependency>
277                 <dependency>
278                     <groupId>org.opendaylight.netconf</groupId>
279                     <artifactId>features-yanglib</artifactId>
280                     <classifier>features</classifier>
281                     <type>xml</type>
282                 </dependency>
283             </dependencies>
284         </profile>
285         <!-- NetVirt -->
286         <profile>
287             <id>netvirt</id>
288             <activation>
289                 <activeByDefault>true</activeByDefault>
290             </activation>
291             <dependencies>
292                 <dependency>
293                     <groupId>org.opendaylight.netvirt</groupId>
294                     <artifactId>netvirt-features</artifactId>
295                     <classifier>features</classifier>
296                     <type>xml</type>
297                 </dependency>
298             </dependencies>
299         </profile>
300         <!-- Neutron Northbound -->
301         <profile>
302             <id>neutron</id>
303             <activation>
304                 <activeByDefault>true</activeByDefault>
305             </activation>
306             <dependencies>
307                 <dependency>
308                     <groupId>org.opendaylight.neutron</groupId>
309                     <artifactId>features-neutron-service</artifactId>
310                     <classifier>features</classifier>
311                     <type>xml</type>
312                 </dependency>
313             </dependencies>
314         </profile>
315         <!-- ODL Parent -->
316         <profile>
317             <id>odlparent</id>
318             <activation>
319                 <activeByDefault>true</activeByDefault>
320             </activation>
321             <dependencies>
322                 <dependency>
323                     <groupId>org.opendaylight.odlparent</groupId>
324                     <artifactId>features-odlparent</artifactId>
325                     <classifier>features</classifier>
326                     <type>xml</type>
327                 </dependency>
328             </dependencies>
329         </profile>
330         <!-- OpenflowPlugin -->
331         <profile>
332             <id>openflowplugin</id>
333             <activation>
334                 <activeByDefault>true</activeByDefault>
335             </activation>
336             <dependencies>
337                 <dependency>
338                     <groupId>org.opendaylight.openflowplugin</groupId>
339                     <artifactId>features-openflowplugin</artifactId>
340                     <classifier>features</classifier>
341                     <type>xml</type>
342                 </dependency>
343                 <dependency>
344                     <groupId>org.opendaylight.openflowplugin</groupId>
345                     <artifactId>features-openflowplugin-extension</artifactId>
346                     <classifier>features</classifier>
347                     <type>xml</type>
348                 </dependency>
349             </dependencies>
350         </profile>
351         <!-- OVSDB -->
352         <profile>
353             <id>ovsdb</id>
354             <activation>
355                 <activeByDefault>true</activeByDefault>
356             </activation>
357             <dependencies>
358                 <dependency>
359                     <groupId>org.opendaylight.ovsdb</groupId>
360                     <artifactId>library-features</artifactId>
361                     <classifier>features</classifier>
362                     <type>xml</type>
363                 </dependency>
364                 <dependency>
365                     <groupId>org.opendaylight.ovsdb</groupId>
366                     <artifactId>hwvtepsouthbound-features</artifactId>
367                     <classifier>features</classifier>
368                     <type>xml</type>
369                 </dependency>
370                 <dependency>
371                     <groupId>org.opendaylight.ovsdb</groupId>
372                     <artifactId>southbound-features</artifactId>
373                     <classifier>features</classifier>
374                     <type>xml</type>
375                 </dependency>
376             </dependencies>
377         </profile>
378         <!-- Serviceutils -->
379         <profile>
380             <id>serviceutils</id>
381             <activation>
382                 <activeByDefault>true</activeByDefault>
383             </activation>
384             <dependencies>
385                 <dependency>
386                     <groupId>org.opendaylight.serviceutils</groupId>
387                     <artifactId>serviceutils-features</artifactId>
388                     <classifier>features</classifier>
389                     <type>xml</type>
390                 </dependency>
391             </dependencies>
392         </profile>
393         <!-- Yangtools -->
394         <profile>
395             <id>yangtools</id>
396             <activation>
397                 <activeByDefault>true</activeByDefault>
398             </activation>
399             <dependencies>
400                 <dependency>
401                     <groupId>org.opendaylight.yangtools</groupId>
402                     <artifactId>features-yangtools</artifactId>
403                     <classifier>features</classifier>
404                     <type>xml</type>
405                 </dependency>
406                 <dependency>
407                     <groupId>org.opendaylight.yangtools</groupId>
408                     <artifactId>features-yangtools-experimental</artifactId>
409                     <classifier>features</classifier>
410                     <type>xml</type>
411                 </dependency>
412             </dependencies>
413         </profile>
414     </profiles>
415 </project>