Managed Release: Deactivate non-MSI projects
[integration/distribution.git] / features / singles / odl-integration-compatible-with-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-compatible-with-all</artifactId>
21     <!-- TODO: Shorter 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 compatible together.</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-compatible-with-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
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         <plugins>
58             <plugin>
59                 <groupId>org.apache.karaf.tooling</groupId>
60                 <artifactId>karaf-maven-plugin</artifactId>
61                 <version>4.1.5</version>
62             </plugin>
63         </plugins>
64     </build>
65
66     <!-- User facing single features. Alphabetical order -->
67     <profiles>
68         <!-- AAA -->
69         <profile>
70             <id>aaa</id>
71             <activation>
72                 <activeByDefault>true</activeByDefault>
73             </activation>
74             <dependencies>
75                 <dependency>
76                     <groupId>org.opendaylight.aaa</groupId>
77                     <artifactId>odl-aaa-shiro</artifactId>
78                     <type>xml</type>
79                     <classifier>features</classifier>
80                 </dependency>
81             </dependencies>
82         </profile>
83         <!-- ALTO -->
84         <profile>
85             <id>alto</id>
86             <activation>
87                 <!-- Commented because of SFT memory issues -->
88                 <activeByDefault>false</activeByDefault>
89             </activation>
90             <dependencies>
91                 <dependency>
92                     <groupId>org.opendaylight.alto</groupId>
93                     <artifactId>odl-alto-simpleird</artifactId>
94                     <classifier>features</classifier>
95                     <type>xml</type>
96                 </dependency>
97                 <dependency>
98                     <groupId>org.opendaylight.alto</groupId>
99                     <artifactId>odl-alto-manual-maps</artifactId>
100                     <classifier>features</classifier>
101                     <type>xml</type>
102                 </dependency>
103                 <dependency>
104                     <groupId>org.opendaylight.alto</groupId>
105                     <artifactId>odl-alto-simpleecs</artifactId>
106                     <classifier>features</classifier>
107                     <type>xml</type>
108                 </dependency>
109                 <dependency>
110                     <groupId>org.opendaylight.alto</groupId>
111                     <artifactId>odl-alto-auto-maps</artifactId>
112                     <classifier>features</classifier>
113                     <type>xml</type>
114                 </dependency>
115                 <dependency>
116                     <groupId>org.opendaylight.alto</groupId>
117                     <artifactId>odl-alto-spce</artifactId>
118                     <classifier>features</classifier>
119                     <type>xml</type>
120                 </dependency>
121             </dependencies>
122         </profile>
123         <!-- BGPCEP -->
124         <profile>
125             <id>bgpcep</id>
126             <activation>
127                 <activeByDefault>true</activeByDefault>
128             </activation>
129             <dependencies>
130                 <dependency>
131                     <groupId>org.opendaylight.bgpcep</groupId>
132                     <artifactId>odl-bgpcep-bgp</artifactId>
133                     <type>xml</type>
134                     <classifier>features</classifier>
135                 </dependency>
136                 <dependency>
137                     <groupId>org.opendaylight.bgpcep</groupId>
138                     <artifactId>odl-bgpcep-bmp</artifactId>
139                     <type>xml</type>
140                     <classifier>features</classifier>
141                 </dependency>
142                 <dependency>
143                     <groupId>org.opendaylight.bgpcep</groupId>
144                     <artifactId>odl-bgpcep-pcep</artifactId>
145                     <type>xml</type>
146                     <classifier>features</classifier>
147                 </dependency>
148                 <dependency>
149                     <groupId>org.opendaylight.bgpcep</groupId>
150                     <artifactId>odl-bgpcep-rsvp</artifactId>
151                     <type>xml</type>
152                     <classifier>features</classifier>
153                 </dependency>
154             </dependencies>
155         </profile>
156         <!-- Daexim -->
157         <profile>
158             <id>daexim</id>
159             <activation>
160                 <activeByDefault>true</activeByDefault>
161             </activation>
162             <dependencies>
163                 <dependency>
164                     <groupId>org.opendaylight.daexim</groupId>
165                     <artifactId>odl-daexim-all</artifactId>
166                     <type>xml</type>
167                     <classifier>features</classifier>
168                 </dependency>
169             </dependencies>
170         </profile>
171         <!-- Distribution -->
172         <profile>
173             <id>distribution</id>
174             <activation>
175                 <activeByDefault>true</activeByDefault>
176             </activation>
177             <dependencies>
178                 <dependency>
179                     <groupId>${project.groupId}</groupId>
180                     <artifactId>odl-distribution-version</artifactId>
181                     <type>xml</type>
182                     <classifier>features</classifier>
183                 </dependency>
184             </dependencies>
185         </profile>
186         <!-- DluxApps -->
187         <profile>
188             <id>dluxapps</id>
189             <activation>
190                 <activeByDefault>false</activeByDefault>
191             </activation>
192             <dependencies>
193                 <dependency>
194                     <groupId>org.opendaylight.dluxapps</groupId>
195                     <artifactId>odl-dluxapps-nodes</artifactId>
196                     <type>xml</type>
197                     <classifier>features</classifier>
198                 </dependency>
199                 <dependency>
200                     <groupId>org.opendaylight.dluxapps</groupId>
201                     <artifactId>odl-dluxapps-topology</artifactId>
202                     <type>xml</type>
203                     <classifier>features</classifier>
204                 </dependency>
205                 <dependency>
206                     <groupId>org.opendaylight.dluxapps</groupId>
207                     <artifactId>odl-dluxapps-yangman</artifactId>
208                     <type>xml</type>
209                     <classifier>features</classifier>
210                 </dependency>
211                 <dependency>
212                     <groupId>org.opendaylight.dluxapps</groupId>
213                     <artifactId>odl-dluxapps-yangvisualizer</artifactId>
214                     <type>xml</type>
215                     <classifier>features</classifier>
216                 </dependency>
217             </dependencies>
218         </profile>
219         <!-- InfraUtils -->
220         <profile>
221             <id>infrautils</id>
222             <activation>
223                 <activeByDefault>true</activeByDefault>
224             </activation>
225             <dependencies>
226                 <dependency>
227                     <groupId>org.opendaylight.infrautils</groupId>
228                     <artifactId>odl-infrautils-ready</artifactId>
229                     <type>xml</type>
230                     <classifier>features</classifier>
231                 </dependency>
232             </dependencies>
233         </profile>
234         <!-- LISP Flow Mapping -->
235         <profile>
236             <id>lispflowmapping</id>
237             <activation>
238                 <activeByDefault>true</activeByDefault>
239             </activation>
240             <dependencies>
241                 <dependency>
242                     <groupId>org.opendaylight.lispflowmapping</groupId>
243                     <artifactId>odl-lispflowmapping-msmr</artifactId>
244                     <type>xml</type>
245                     <classifier>features</classifier>
246                 </dependency>
247             </dependencies>
248         </profile>
249         <!-- Netconf -->
250         <profile>
251             <id>netconf</id>
252             <activation>
253                 <activeByDefault>true</activeByDefault>
254             </activation>
255             <dependencies>
256                 <dependency>
257                     <groupId>org.opendaylight.netconf</groupId>
258                     <artifactId>odl-mdsal-apidocs</artifactId>
259                     <classifier>features</classifier>
260                     <type>xml</type>
261                 </dependency>
262                 <dependency>
263                     <groupId>org.opendaylight.netconf</groupId>
264                     <artifactId>odl-restconf</artifactId>
265                     <classifier>features</classifier>
266                     <type>xml</type>
267                 </dependency>
268                 <dependency>
269                     <groupId>org.opendaylight.netconf</groupId>
270                     <artifactId>odl-yanglib</artifactId>
271                     <classifier>features</classifier>
272                     <type>xml</type>
273                 </dependency>
274             </dependencies>
275         </profile>
276         <!-- Neutron Northbound -->
277         <profile>
278             <id>neutron</id>
279             <activation>
280                 <activeByDefault>true</activeByDefault>
281             </activation>
282             <dependencies>
283                 <dependency>
284                     <groupId>org.opendaylight.neutron</groupId>
285                     <artifactId>odl-neutron-service</artifactId>
286                     <type>xml</type>
287                     <classifier>features</classifier>
288                 </dependency>
289             </dependencies>
290         </profile>
291         <!-- NIC -->
292         <profile>
293             <id>nic</id>
294             <activation>
295                 <!-- Disabled because of SFT memory issues -->
296                 <activeByDefault>false</activeByDefault>
297             </activation>
298             <dependencies>
299                 <dependency>
300                     <groupId>org.opendaylight.nic</groupId>
301                     <artifactId>odl-nic-intent-common</artifactId>
302                     <type>xml</type>
303                     <classifier>features</classifier>
304                 </dependency>
305             </dependencies>
306         </profile>
307         <!-- OCPplugin -->
308         <profile>
309             <id>ocpplugin</id>
310             <activation>
311                 <!-- Inactive -->
312                 <activeByDefault>false</activeByDefault>
313             </activation>
314             <dependencies>
315                 <dependency>
316                     <groupId>org.opendaylight.ocpplugin</groupId>
317                     <artifactId>odl-ocpplugin-all</artifactId>
318                     <type>xml</type>
319                     <classifier>features</classifier>
320                 </dependency>
321             </dependencies>
322         </profile>
323         <!-- OpenflowPlugin -->
324         <profile>
325             <id>openflowplugin</id>
326             <activation>
327                 <activeByDefault>true</activeByDefault>
328             </activation>
329             <dependencies>
330                 <dependency>
331                     <groupId>org.opendaylight.openflowplugin</groupId>
332                     <artifactId>odl-openflowplugin-flow-services-rest</artifactId>
333                     <type>xml</type>
334                     <classifier>features</classifier>
335                 </dependency>
336                 <dependency>
337                     <groupId>org.opendaylight.openflowplugin</groupId>
338                     <artifactId>odl-openflowplugin-nxm-extensions</artifactId>
339                     <type>xml</type>
340                     <classifier>features</classifier>
341                 </dependency>
342             </dependencies>
343         </profile>
344         <!-- OVSDB -->
345         <profile>
346             <id>ovsdb</id>
347             <activation>
348                 <activeByDefault>true</activeByDefault>
349             </activation>
350             <dependencies>
351                 <dependency>
352                     <groupId>org.opendaylight.ovsdb</groupId>
353                     <artifactId>odl-ovsdb-library</artifactId>
354                     <type>xml</type>
355                     <classifier>features</classifier>
356                 </dependency>
357                 <dependency>
358                     <groupId>org.opendaylight.ovsdb</groupId>
359                     <artifactId>odl-ovsdb-hwvtepsouthbound</artifactId>
360                     <type>xml</type>
361                     <classifier>features</classifier>
362                 </dependency>
363                 <dependency>
364                     <groupId>org.opendaylight.ovsdb</groupId>
365                     <artifactId>odl-ovsdb-southbound-impl</artifactId>
366                     <type>xml</type>
367                     <classifier>features</classifier>
368                 </dependency>
369             </dependencies>
370         </profile>
371         <!-- Packetcable -->
372         <profile>
373             <id>packetcable</id>
374             <activation>
375                 <activeByDefault>false</activeByDefault>
376             </activation>
377             <dependencies>
378                 <dependency>
379                     <groupId>org.opendaylight.packetcable</groupId>
380                     <artifactId>odl-packetcable-policy-model</artifactId>
381                     <type>xml</type>
382                     <classifier>features</classifier>
383                 </dependency>
384                 <dependency>
385                     <groupId>org.opendaylight.packetcable</groupId>
386                     <artifactId>odl-packetcable-policy-server</artifactId>
387                     <type>xml</type>
388                     <classifier>features</classifier>
389                 </dependency>
390                 <dependency>
391                     <groupId>org.opendaylight.packetcable</groupId>
392                     <artifactId>odl-packetcable-policy-server-all</artifactId>
393                     <type>xml</type>
394                     <classifier>features</classifier>
395                 </dependency>
396             </dependencies>
397         </profile>
398         <!-- SFC -->
399         <profile>
400             <id>sfc</id>
401             <activation>
402                 <activeByDefault>true</activeByDefault>
403             </activation>
404             <dependencies>
405                 <dependency>
406                     <groupId>org.opendaylight.sfc</groupId>
407                     <artifactId>odl-sfc-ovs</artifactId>
408                     <type>xml</type>
409                     <classifier>features</classifier>
410                 </dependency>
411                 <dependency>
412                     <groupId>org.opendaylight.sfc</groupId>
413                     <artifactId>odl-sfc-sb-rest</artifactId>
414                     <type>xml</type>
415                     <classifier>features</classifier>
416                 </dependency>
417                 <dependency>
418                     <groupId>org.opendaylight.sfc</groupId>
419                     <artifactId>odl-sfc-ui</artifactId>
420                     <type>xml</type>
421                     <classifier>features</classifier>
422                 </dependency>
423                 <dependency>
424                     <groupId>org.opendaylight.sfc</groupId>
425                     <artifactId>odl-sfclisp</artifactId>
426                     <type>xml</type>
427                     <classifier>features</classifier>
428                 </dependency>
429                 <dependency>
430                     <groupId>org.opendaylight.sfc</groupId>
431                     <artifactId>odl-sfc-shell</artifactId>
432                     <type>xml</type>
433                     <classifier>features</classifier>
434                 </dependency>
435             </dependencies>
436         </profile>
437         <!-- SNMP4SDN -->
438         <profile>
439             <id>snmp4sdn</id>
440             <activation>
441                 <activeByDefault>false</activeByDefault>
442             </activation>
443             <dependencies>
444                 <dependency>
445                     <groupId>org.opendaylight.snmp4sdn</groupId>
446                     <artifactId>odl-snmp4sdn-snmp4sdn</artifactId>
447                     <classifier>features</classifier>
448                     <type>xml</type>
449                 </dependency>
450             </dependencies>
451         </profile>
452         <!-- SXP -->
453         <profile>
454             <id>sxp</id>
455             <activation>
456                 <activeByDefault>false</activeByDefault>
457             </activation>
458             <dependencies>
459                 <dependency>
460                     <groupId>org.opendaylight.sxp</groupId>
461                     <artifactId>odl-sxp-controller</artifactId>
462                     <classifier>features</classifier>
463                     <type>xml</type>
464                 </dependency>
465             </dependencies>
466         </profile>
467     </profiles>
468 </project>