restore bier in distribution
[integration/distribution.git] / features / singles / odl-integration-all / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2017 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8  -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>single-feature-parent</artifactId>
16         <version>3.0.2</version>
17         <relativePath/>
18     </parent>
19     <groupId>org.opendaylight.integration</groupId>
20     <artifactId>odl-integration-all</artifactId>
21     <!-- TODO: Diferent name? -->
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>Single feature containing all features separately compatible with odl-integration-compatible-with-all.</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/singles/odl-integration-all;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     <dependencies>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>odl-integration-compatible-with-all</artifactId>
57             <type>xml</type>
58             <classifier>features</classifier>
59         </dependency>
60     </dependencies>
61
62     <!-- Override odlparent default to get the speed improvements in feature generation
63          FIXME: remove this once odlparent ships 4.1.5+ -->
64     <build>
65         <plugins>
66             <plugin>
67                 <groupId>org.apache.karaf.tooling</groupId>
68                 <artifactId>karaf-maven-plugin</artifactId>
69                 <version>4.1.5</version>
70             </plugin>
71         </plugins>
72     </build>
73
74     <!-- External single feature dependencies in alphabetical order -->
75     <profiles>
76         <!-- BIER -->
77         <profile>
78             <id>bier</id>
79             <activation>
80                 <activeByDefault>true</activeByDefault>
81             </activation>
82             <dependencies>
83                 <dependency>
84                     <groupId>org.opendaylight.bier</groupId>
85                     <artifactId>odl-bier-all</artifactId>
86                     <type>xml</type>
87                     <classifier>features</classifier>
88                 </dependency>
89             </dependencies>
90         </profile>
91         <!-- COE -->
92         <profile>
93             <id>coe</id>
94             <activation>
95                 <activeByDefault>true</activeByDefault>
96             </activation>
97             <dependencies>
98                 <dependency>
99                     <groupId>org.opendaylight.coe</groupId>
100                     <artifactId>odl-coe</artifactId>
101                     <type>xml</type>
102                     <classifier>features</classifier>
103                 </dependency>
104             </dependencies>
105         </profile>
106         <!-- FaaS -->
107         <profile>
108             <id>faas</id>
109             <activation>
110                 <!-- Commented out because of SFT memory problem -->
111                 <activeByDefault>false</activeByDefault>
112             </activation>
113             <dependencies>
114                 <dependency>
115                     <groupId>org.opendaylight.faas</groupId>
116                     <artifactId>odl-faas-all</artifactId>
117                     <type>xml</type>
118                     <classifier>features</classifier>
119                 </dependency>
120             </dependencies>
121         </profile>
122         <!-- Genius -->
123         <profile>
124             <id>genius</id>
125             <activation>
126                 <activeByDefault>true</activeByDefault>
127             </activation>
128             <dependencies>
129                 <dependency>
130                     <groupId>org.opendaylight.genius</groupId>
131                     <artifactId>odl-genius-rest</artifactId>
132                     <type>xml</type>
133                     <classifier>features</classifier>
134                 </dependency>
135             </dependencies>
136         </profile>
137         <!-- GROUPBASEDPOLICY or GBP-->
138         <profile>
139             <id>groupbasedpolicy</id>
140             <activation>
141                 <!-- Disabled because of SFT memory issues -->
142                 <activeByDefault>false</activeByDefault>
143             </activation>
144             <dependencies>
145                 <dependency>
146                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
147                     <artifactId>odl-groupbasedpolicy-base</artifactId>
148                     <type>xml</type>
149                     <classifier>features</classifier>
150                 </dependency>
151                 <dependency>
152                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
153                     <artifactId>odl-groupbasedpolicy-iovisor</artifactId>
154                     <type>xml</type>
155                     <classifier>features</classifier>
156                 </dependency>
157                 <dependency>
158                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
159                     <artifactId>odl-groupbasedpolicy-neutronmapper</artifactId>
160                     <type>xml</type>
161                     <classifier>features</classifier>
162                 </dependency>
163                 <dependency>
164                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
165                     <artifactId>odl-groupbasedpolicy-neutron-and-ofoverlay</artifactId>
166                     <type>xml</type>
167                     <classifier>features</classifier>
168                 </dependency>
169                 <dependency>
170                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
171                     <artifactId>odl-groupbasedpolicy-ofoverlay</artifactId>
172                     <type>xml</type>
173                     <classifier>features</classifier>
174                 </dependency>
175                 <dependency>
176                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
177                     <artifactId>odl-groupbasedpolicy-vpp</artifactId>
178                     <type>xml</type>
179                     <classifier>features</classifier>
180                 </dependency>
181                 <dependency>
182                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
183                     <artifactId>odl-groupbasedpolicy-neutron-vpp-mapper</artifactId>
184                     <type>xml</type>
185                     <classifier>features</classifier>
186                 </dependency>
187                 <dependency>
188                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
189                     <artifactId>odl-groupbasedpolicy-ui</artifactId>
190                     <type>xml</type>
191                     <classifier>features</classifier>
192                 </dependency>
193                 <dependency>
194                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
195                     <artifactId>odl-groupbasedpolicy-ip-sgt-distribution-service</artifactId>
196                     <type>xml</type>
197                     <classifier>features</classifier>
198                 </dependency>
199                 <dependency>
200                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
201                     <artifactId>odl-groupbasedpolicy-ne-location-provider</artifactId>
202                     <type>xml</type>
203                     <classifier>features</classifier>
204                 </dependency>
205                 <dependency>
206                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
207                     <artifactId>odl-groupbasedpolicy-ios-xe</artifactId>
208                     <type>xml</type>
209                     <classifier>features</classifier>
210                 </dependency>
211                 <dependency>
212                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
213                     <artifactId>odl-groupbasedpolicy-sxp-ep-provider</artifactId>
214                     <type>xml</type>
215                     <classifier>features</classifier>
216                 </dependency>
217                 <dependency>
218                     <groupId>org.opendaylight.groupbasedpolicy</groupId>
219                     <artifactId>odl-groupbasedpolicy-sxp-ise-adapter</artifactId>
220                     <type>xml</type>
221                     <classifier>features</classifier>
222                 </dependency>
223             </dependencies>
224         </profile>
225         <!-- Honeycomb/VBD -->
226         <profile>
227             <id>honeycombvbd</id>
228             <activation>
229                 <!-- Commented out because of SFT memory problem -->
230                 <activeByDefault>false</activeByDefault>
231             </activation>
232             <dependencies>
233                 <dependency>
234                     <groupId>org.opendaylight.honeycomb.vbd</groupId>
235                     <artifactId>odl-vbd</artifactId>
236                     <classifier>features</classifier>
237                     <type>xml</type>
238                 </dependency>
239                 <dependency>
240                     <groupId>org.opendaylight.honeycomb.vbd</groupId>
241                     <artifactId>odl-vbd-rest</artifactId>
242                     <classifier>features</classifier>
243                     <type>xml</type>
244                 </dependency>
245                 <dependency>
246                     <groupId>org.opendaylight.honeycomb.vbd</groupId>
247                     <artifactId>odl-vbd-ui</artifactId>
248                     <classifier>features</classifier>
249                     <type>xml</type>
250                 </dependency>
251             </dependencies>
252         </profile>
253         <!-- jsonrpc -->
254         <profile>
255             <id>jsonrpc</id>
256             <activation>
257                 <activeByDefault>true</activeByDefault>
258             </activation>
259             <dependencies>
260                 <dependency>
261                     <groupId>org.opendaylight.jsonrpc</groupId>
262                     <artifactId>jsonrpc-features</artifactId>
263                     <classifier>features</classifier>
264                     <type>xml</type>
265                 </dependency>
266             </dependencies>
267         </profile>
268         <!-- L2switch -->
269         <profile>
270             <id>l2switch</id>
271             <activation>
272                 <activeByDefault>true</activeByDefault>
273             </activation>
274             <dependencies>
275                 <dependency>
276                     <groupId>org.opendaylight.l2switch</groupId>
277                     <artifactId>odl-l2switch-switch-rest</artifactId>
278                     <classifier>features</classifier>
279                     <type>xml</type>
280                 </dependency>
281             </dependencies>
282         </profile>
283         <!-- NEMO -->
284         <profile>
285             <id>nemo</id>
286             <activation>
287                 <activeByDefault>true</activeByDefault>
288             </activation>
289             <dependencies>
290                 <dependency>
291                     <groupId>org.opendaylight.nemo</groupId>
292                     <artifactId>odl-nemo-engine</artifactId>
293                     <classifier>features</classifier>
294                     <type>xml</type>
295                 </dependency>
296                 <dependency>
297                     <groupId>org.opendaylight.nemo</groupId>
298                     <artifactId>odl-nemo-engine-rest</artifactId>
299                     <classifier>features</classifier>
300                     <type>xml</type>
301                 </dependency>
302                 <dependency>
303                     <groupId>org.opendaylight.nemo</groupId>
304                     <artifactId>odl-nemo-engine-ui</artifactId>
305                     <classifier>features</classifier>
306                     <type>xml</type>
307                 </dependency>
308                 <dependency>
309                     <groupId>org.opendaylight.nemo</groupId>
310                     <artifactId>odl-nemo-openflow-renderer</artifactId>
311                     <classifier>features</classifier>
312                     <type>xml</type>
313                 </dependency>
314                 <dependency>
315                     <groupId>org.opendaylight.nemo</groupId>
316                     <artifactId>odl-nemo-cli-renderer</artifactId>
317                     <classifier>features</classifier>
318                     <type>xml</type>
319                 </dependency>
320             </dependencies>
321         </profile>
322         <!-- Netconf -->
323         <profile>
324             <id>netconf</id>
325             <activation>
326                 <activeByDefault>true</activeByDefault>
327             </activation>
328             <dependencies>
329                 <dependency>
330                     <groupId>org.opendaylight.netconf</groupId>
331                     <artifactId>odl-netconf-callhome-ssh</artifactId>
332                     <classifier>features</classifier>
333                     <type>xml</type>
334                 </dependency>
335                 <dependency>
336                     <groupId>org.opendaylight.netconf</groupId>
337                     <artifactId>odl-netconf-console</artifactId>
338                     <classifier>features</classifier>
339                     <type>xml</type>
340                 </dependency>
341                 <dependency>
342                     <groupId>org.opendaylight.netconf</groupId>
343                     <artifactId>odl-netconf-mdsal</artifactId>
344                     <type>xml</type>
345                     <classifier>features</classifier>
346                 </dependency>
347                 <dependency>
348                     <groupId>org.opendaylight.netconf</groupId>
349                     <artifactId>odl-netconf-topology</artifactId>
350                     <type>xml</type>
351                     <classifier>features</classifier>
352                 </dependency>
353                 <dependency>
354                     <groupId>org.opendaylight.netconf</groupId>
355                     <artifactId>odl-netconf-clustered-topology</artifactId>
356                     <type>xml</type>
357                     <classifier>features</classifier>
358                 </dependency>
359             </dependencies>
360         </profile>
361         <!-- Netvirt -->
362         <profile>
363             <id>netvirt</id>
364             <activation>
365                 <activeByDefault>true</activeByDefault>
366             </activation>
367             <dependencies>
368                 <dependency>
369                     <groupId>org.opendaylight.netvirt</groupId>
370                     <artifactId>odl-netvirt-openstack</artifactId>
371                     <type>xml</type>
372                     <classifier>features</classifier>
373                 </dependency>
374             </dependencies>
375         </profile>
376         <!-- OF-CONFIG -->
377         <profile>
378             <id>ofconfig</id>
379             <activation>
380                 <activeByDefault>true</activeByDefault>
381             </activation>
382             <dependencies>
383                 <dependency>
384                     <groupId>org.opendaylight.of-config</groupId>
385                     <artifactId>odl-of-config-all</artifactId>
386                     <type>xml</type>
387                     <classifier>features</classifier>
388                 </dependency>
389             </dependencies>
390         </profile>
391         <!-- P4 Plugin -->
392         <profile>
393             <id>p4plugin</id>
394             <activation>
395                 <activeByDefault>true</activeByDefault>
396             </activation>
397             <dependencies>
398                 <dependency>
399                     <groupId>org.opendaylight.p4plugin</groupId>
400                     <artifactId>odl-p4plugin-all</artifactId>
401                     <type>xml</type>
402                     <classifier>features</classifier>
403                 </dependency>
404             </dependencies>
405         </profile>
406         <!-- SFC -->
407         <profile>
408             <id>sfc</id>
409             <activation>
410                 <activeByDefault>true</activeByDefault>
411             </activation>
412             <dependencies>
413                 <dependency>
414                     <groupId>org.opendaylight.sfc</groupId>
415                     <artifactId>odl-sfc-ios-xe-renderer</artifactId>
416                     <type>xml</type>
417                     <classifier>features</classifier>
418                 </dependency>
419                 <dependency>
420                     <groupId>org.opendaylight.sfc</groupId>
421                     <artifactId>odl-sfc-netconf</artifactId>
422                     <type>xml</type>
423                     <classifier>features</classifier>
424                 </dependency>
425                 <dependency>
426                     <groupId>org.opendaylight.sfc</groupId>
427                     <artifactId>odl-sfc-openflow-renderer</artifactId>
428                     <type>xml</type>
429                     <classifier>features</classifier>
430                 </dependency>
431                 <dependency>
432                     <groupId>org.opendaylight.sfc</groupId>
433                     <artifactId>odl-sfc-vpp-renderer</artifactId>
434                     <type>xml</type>
435                     <classifier>features</classifier>
436                 </dependency>
437             </dependencies>
438         </profile>
439         <!-- TSDR -->
440         <profile>
441             <id>tsdr</id>
442             <activation>
443                 <activeByDefault>true</activeByDefault>
444             </activation>
445             <dependencies>
446                 <dependency>
447                     <groupId>org.opendaylight.tsdr</groupId>
448                     <artifactId>odl-tsdr-hsqldb-all</artifactId>
449                     <classifier>features</classifier>
450                     <type>xml</type>
451                 </dependency>
452             </dependencies>
453         </profile>
454         <!-- Unimgr -->
455         <profile>
456             <id>unimgr</id>
457             <activation>
458                 <!-- Removed for the odlparent 3 / yangtools 2 migration -->
459                 <activeByDefault>false</activeByDefault>
460             </activation>
461             <dependencies>
462                 <dependency>
463                     <groupId>org.opendaylight.unimgr</groupId>
464                     <artifactId>odl-unimgr</artifactId>
465                     <type>xml</type>
466                     <classifier>features</classifier>
467                 </dependency>
468             </dependencies>
469         </profile>
470         <!-- USC -->
471         <profile>
472             <id>usc</id>
473             <activation>
474                 <activeByDefault>true</activeByDefault>
475             </activation>
476             <dependencies>
477                 <dependency>
478                     <groupId>org.opendaylight.usc</groupId>
479                     <artifactId>odl-usc-channel-ui</artifactId>
480                     <type>xml</type>
481                     <classifier>features</classifier>
482                 </dependency>
483             </dependencies>
484         </profile>
485         <!-- VTN -->
486         <profile>
487             <id>vtn</id>
488             <activation>
489                 <activeByDefault>true</activeByDefault>
490             </activation>
491             <dependencies>
492                 <dependency>
493                     <groupId>org.opendaylight.vtn</groupId>
494                     <artifactId>odl-vtn-manager-rest</artifactId>
495                     <type>xml</type>
496                     <classifier>features</classifier>
497                 </dependency>
498                 <dependency>
499                     <groupId>org.opendaylight.vtn</groupId>
500                     <artifactId>odl-vtn-manager-neutron</artifactId>
501                     <type>xml</type>
502                     <classifier>features</classifier>
503                 </dependency>
504             </dependencies>
505         </profile>
506     </profiles>
507 </project>