Remove version feature
[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         <!-- DluxApps -->
172         <profile>
173             <id>dluxapps</id>
174             <activation>
175                 <activeByDefault>false</activeByDefault>
176             </activation>
177             <dependencies>
178                 <dependency>
179                     <groupId>org.opendaylight.dluxapps</groupId>
180                     <artifactId>odl-dluxapps-nodes</artifactId>
181                     <type>xml</type>
182                     <classifier>features</classifier>
183                 </dependency>
184                 <dependency>
185                     <groupId>org.opendaylight.dluxapps</groupId>
186                     <artifactId>odl-dluxapps-topology</artifactId>
187                     <type>xml</type>
188                     <classifier>features</classifier>
189                 </dependency>
190                 <dependency>
191                     <groupId>org.opendaylight.dluxapps</groupId>
192                     <artifactId>odl-dluxapps-yangman</artifactId>
193                     <type>xml</type>
194                     <classifier>features</classifier>
195                 </dependency>
196                 <dependency>
197                     <groupId>org.opendaylight.dluxapps</groupId>
198                     <artifactId>odl-dluxapps-yangvisualizer</artifactId>
199                     <type>xml</type>
200                     <classifier>features</classifier>
201                 </dependency>
202             </dependencies>
203         </profile>
204         <!-- InfraUtils -->
205         <profile>
206             <id>infrautils</id>
207             <activation>
208                 <activeByDefault>true</activeByDefault>
209             </activation>
210             <dependencies>
211                 <dependency>
212                     <groupId>org.opendaylight.infrautils</groupId>
213                     <artifactId>odl-infrautils-ready</artifactId>
214                     <type>xml</type>
215                     <classifier>features</classifier>
216                 </dependency>
217             </dependencies>
218         </profile>
219         <!-- LISP Flow Mapping -->
220         <profile>
221             <id>lispflowmapping</id>
222             <activation>
223                 <activeByDefault>true</activeByDefault>
224             </activation>
225             <dependencies>
226                 <dependency>
227                     <groupId>org.opendaylight.lispflowmapping</groupId>
228                     <artifactId>odl-lispflowmapping-msmr</artifactId>
229                     <type>xml</type>
230                     <classifier>features</classifier>
231                 </dependency>
232             </dependencies>
233         </profile>
234         <!-- Netconf -->
235         <profile>
236             <id>netconf</id>
237             <activation>
238                 <activeByDefault>true</activeByDefault>
239             </activation>
240             <dependencies>
241                 <dependency>
242                     <groupId>org.opendaylight.netconf</groupId>
243                     <artifactId>odl-mdsal-apidocs</artifactId>
244                     <classifier>features</classifier>
245                     <type>xml</type>
246                 </dependency>
247                 <dependency>
248                     <groupId>org.opendaylight.netconf</groupId>
249                     <artifactId>odl-restconf</artifactId>
250                     <classifier>features</classifier>
251                     <type>xml</type>
252                 </dependency>
253                 <dependency>
254                     <groupId>org.opendaylight.netconf</groupId>
255                     <artifactId>odl-yanglib</artifactId>
256                     <classifier>features</classifier>
257                     <type>xml</type>
258                 </dependency>
259             </dependencies>
260         </profile>
261         <!-- Neutron Northbound -->
262         <profile>
263             <id>neutron</id>
264             <activation>
265                 <activeByDefault>true</activeByDefault>
266             </activation>
267             <dependencies>
268                 <dependency>
269                     <groupId>org.opendaylight.neutron</groupId>
270                     <artifactId>odl-neutron-service</artifactId>
271                     <type>xml</type>
272                     <classifier>features</classifier>
273                 </dependency>
274             </dependencies>
275         </profile>
276         <!-- NIC -->
277         <profile>
278             <id>nic</id>
279             <activation>
280                 <!-- Disabled because of SFT memory issues -->
281                 <activeByDefault>false</activeByDefault>
282             </activation>
283             <dependencies>
284                 <dependency>
285                     <groupId>org.opendaylight.nic</groupId>
286                     <artifactId>odl-nic-intent-common</artifactId>
287                     <type>xml</type>
288                     <classifier>features</classifier>
289                 </dependency>
290             </dependencies>
291         </profile>
292         <!-- OCPplugin -->
293         <profile>
294             <id>ocpplugin</id>
295             <activation>
296                 <!-- Inactive -->
297                 <activeByDefault>false</activeByDefault>
298             </activation>
299             <dependencies>
300                 <dependency>
301                     <groupId>org.opendaylight.ocpplugin</groupId>
302                     <artifactId>odl-ocpplugin-all</artifactId>
303                     <type>xml</type>
304                     <classifier>features</classifier>
305                 </dependency>
306             </dependencies>
307         </profile>
308         <!-- OpenflowPlugin -->
309         <profile>
310             <id>openflowplugin</id>
311             <activation>
312                 <activeByDefault>true</activeByDefault>
313             </activation>
314             <dependencies>
315                 <dependency>
316                     <groupId>org.opendaylight.openflowplugin</groupId>
317                     <artifactId>odl-openflowplugin-flow-services-rest</artifactId>
318                     <type>xml</type>
319                     <classifier>features</classifier>
320                 </dependency>
321                 <dependency>
322                     <groupId>org.opendaylight.openflowplugin</groupId>
323                     <artifactId>odl-openflowplugin-nxm-extensions</artifactId>
324                     <type>xml</type>
325                     <classifier>features</classifier>
326                 </dependency>
327             </dependencies>
328         </profile>
329         <!-- OVSDB -->
330         <profile>
331             <id>ovsdb</id>
332             <activation>
333                 <activeByDefault>true</activeByDefault>
334             </activation>
335             <dependencies>
336                 <dependency>
337                     <groupId>org.opendaylight.ovsdb</groupId>
338                     <artifactId>odl-ovsdb-library</artifactId>
339                     <type>xml</type>
340                     <classifier>features</classifier>
341                 </dependency>
342                 <dependency>
343                     <groupId>org.opendaylight.ovsdb</groupId>
344                     <artifactId>odl-ovsdb-hwvtepsouthbound</artifactId>
345                     <type>xml</type>
346                     <classifier>features</classifier>
347                 </dependency>
348                 <dependency>
349                     <groupId>org.opendaylight.ovsdb</groupId>
350                     <artifactId>odl-ovsdb-southbound-impl</artifactId>
351                     <type>xml</type>
352                     <classifier>features</classifier>
353                 </dependency>
354             </dependencies>
355         </profile>
356         <!-- Packetcable -->
357         <profile>
358             <id>packetcable</id>
359             <activation>
360                 <activeByDefault>false</activeByDefault>
361             </activation>
362             <dependencies>
363                 <dependency>
364                     <groupId>org.opendaylight.packetcable</groupId>
365                     <artifactId>odl-packetcable-policy-model</artifactId>
366                     <type>xml</type>
367                     <classifier>features</classifier>
368                 </dependency>
369                 <dependency>
370                     <groupId>org.opendaylight.packetcable</groupId>
371                     <artifactId>odl-packetcable-policy-server</artifactId>
372                     <type>xml</type>
373                     <classifier>features</classifier>
374                 </dependency>
375                 <dependency>
376                     <groupId>org.opendaylight.packetcable</groupId>
377                     <artifactId>odl-packetcable-policy-server-all</artifactId>
378                     <type>xml</type>
379                     <classifier>features</classifier>
380                 </dependency>
381             </dependencies>
382         </profile>
383         <!-- SFC -->
384         <profile>
385             <id>sfc</id>
386             <activation>
387                 <activeByDefault>false</activeByDefault>
388             </activation>
389             <dependencies>
390                 <dependency>
391                     <groupId>org.opendaylight.sfc</groupId>
392                     <artifactId>odl-sfc-ovs</artifactId>
393                     <type>xml</type>
394                     <classifier>features</classifier>
395                 </dependency>
396                 <dependency>
397                     <groupId>org.opendaylight.sfc</groupId>
398                     <artifactId>odl-sfc-sb-rest</artifactId>
399                     <type>xml</type>
400                     <classifier>features</classifier>
401                 </dependency>
402                 <dependency>
403                     <groupId>org.opendaylight.sfc</groupId>
404                     <artifactId>odl-sfc-ui</artifactId>
405                     <type>xml</type>
406                     <classifier>features</classifier>
407                 </dependency>
408                 <dependency>
409                     <groupId>org.opendaylight.sfc</groupId>
410                     <artifactId>odl-sfclisp</artifactId>
411                     <type>xml</type>
412                     <classifier>features</classifier>
413                 </dependency>
414                 <dependency>
415                     <groupId>org.opendaylight.sfc</groupId>
416                     <artifactId>odl-sfc-shell</artifactId>
417                     <type>xml</type>
418                     <classifier>features</classifier>
419                 </dependency>
420             </dependencies>
421         </profile>
422         <!-- SNMP4SDN -->
423         <profile>
424             <id>snmp4sdn</id>
425             <activation>
426                 <activeByDefault>false</activeByDefault>
427             </activation>
428             <dependencies>
429                 <dependency>
430                     <groupId>org.opendaylight.snmp4sdn</groupId>
431                     <artifactId>odl-snmp4sdn-snmp4sdn</artifactId>
432                     <classifier>features</classifier>
433                     <type>xml</type>
434                 </dependency>
435             </dependencies>
436         </profile>
437         <!-- SXP -->
438         <profile>
439             <id>sxp</id>
440             <activation>
441                 <activeByDefault>false</activeByDefault>
442             </activation>
443             <dependencies>
444                 <dependency>
445                     <groupId>org.opendaylight.sxp</groupId>
446                     <artifactId>odl-sxp-controller</artifactId>
447                     <classifier>features</classifier>
448                     <type>xml</type>
449                 </dependency>
450             </dependencies>
451         </profile>
452     </profiles>
453 </project>