8c01c6ce5cfc256779e9d7dca855cd848f5659db
[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" 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">
10     <modelVersion>4.0.0</modelVersion>
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>single-feature-parent</artifactId>
14         <version>3.1.3</version>
15         <relativePath/>
16     </parent>
17     <groupId>org.opendaylight.integration</groupId>
18     <artifactId>odl-integration-all</artifactId>
19     <!-- TODO: Diferent name? -->
20     <version>0.9.1-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>Single feature containing all features separately compatible with odl-integration-compatible-with-all.</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/singles/odl-integration-all;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     <dependencies>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>odl-integration-compatible-with-all</artifactId>
55             <type>xml</type>
56             <classifier>features</classifier>
57         </dependency>
58     </dependencies>
59
60     <!-- Override odlparent default to get the speed improvements in feature generation
61          FIXME: remove this once odlparent ships 4.1.5+ -->
62     <build>
63         <plugins>
64             <plugin>
65                 <groupId>org.apache.karaf.tooling</groupId>
66                 <artifactId>karaf-maven-plugin</artifactId>
67                 <version>4.1.5</version>
68             </plugin>
69         </plugins>
70     </build>
71
72     <!-- External single feature dependencies in alphabetical order -->
73     <profiles>
74         <!-- COE -->
75         <profile>
76             <id>coe</id>
77             <activation>
78                 <activeByDefault>true</activeByDefault>
79             </activation>
80             <dependencies>
81                 <dependency>
82                     <groupId>org.opendaylight.coe</groupId>
83                     <artifactId>odl-coe</artifactId>
84                     <type>xml</type>
85                     <classifier>features</classifier>
86                 </dependency>
87             </dependencies>
88         </profile>
89         <!-- Genius -->
90         <profile>
91             <id>genius</id>
92             <activation>
93                 <activeByDefault>true</activeByDefault>
94             </activation>
95             <dependencies>
96                 <dependency>
97                     <groupId>org.opendaylight.genius</groupId>
98                     <artifactId>odl-genius-rest</artifactId>
99                     <type>xml</type>
100                     <classifier>features</classifier>
101                 </dependency>
102             </dependencies>
103         </profile>
104         <!-- Netconf -->
105         <profile>
106             <id>netconf</id>
107             <activation>
108                 <activeByDefault>true</activeByDefault>
109             </activation>
110             <dependencies>
111                 <dependency>
112                     <groupId>org.opendaylight.netconf</groupId>
113                     <artifactId>odl-netconf-callhome-ssh</artifactId>
114                     <classifier>features</classifier>
115                     <type>xml</type>
116                 </dependency>
117                 <dependency>
118                     <groupId>org.opendaylight.netconf</groupId>
119                     <artifactId>odl-netconf-console</artifactId>
120                     <classifier>features</classifier>
121                     <type>xml</type>
122                 </dependency>
123                 <dependency>
124                     <groupId>org.opendaylight.netconf</groupId>
125                     <artifactId>odl-netconf-mdsal</artifactId>
126                     <type>xml</type>
127                     <classifier>features</classifier>
128                 </dependency>
129                 <dependency>
130                     <groupId>org.opendaylight.netconf</groupId>
131                     <artifactId>odl-netconf-topology</artifactId>
132                     <type>xml</type>
133                     <classifier>features</classifier>
134                 </dependency>
135                 <dependency>
136                     <groupId>org.opendaylight.netconf</groupId>
137                     <artifactId>odl-netconf-clustered-topology</artifactId>
138                     <type>xml</type>
139                     <classifier>features</classifier>
140                 </dependency>
141             </dependencies>
142         </profile>
143         <!-- Netvirt -->
144         <profile>
145             <id>netvirt</id>
146             <activation>
147                 <activeByDefault>true</activeByDefault>
148             </activation>
149             <dependencies>
150                 <dependency>
151                     <groupId>org.opendaylight.netvirt</groupId>
152                     <artifactId>odl-netvirt-openstack</artifactId>
153                     <type>xml</type>
154                     <classifier>features</classifier>
155                 </dependency>
156             </dependencies>
157         </profile>
158         <!-- SFC -->
159         <profile>
160             <id>sfc</id>
161             <activation>
162                 <activeByDefault>true</activeByDefault>
163             </activation>
164             <dependencies>
165                 <dependency>
166                     <groupId>org.opendaylight.sfc</groupId>
167                     <artifactId>odl-sfc-ios-xe-renderer</artifactId>
168                     <type>xml</type>
169                     <classifier>features</classifier>
170                 </dependency>
171                 <dependency>
172                     <groupId>org.opendaylight.sfc</groupId>
173                     <artifactId>odl-sfc-netconf</artifactId>
174                     <type>xml</type>
175                     <classifier>features</classifier>
176                 </dependency>
177                 <dependency>
178                     <groupId>org.opendaylight.sfc</groupId>
179                     <artifactId>odl-sfc-openflow-renderer</artifactId>
180                     <type>xml</type>
181                     <classifier>features</classifier>
182                 </dependency>
183                 <dependency>
184                     <groupId>org.opendaylight.sfc</groupId>
185                     <artifactId>odl-sfc-vpp-renderer</artifactId>
186                     <type>xml</type>
187                     <classifier>features</classifier>
188                 </dependency>
189             </dependencies>
190         </profile>
191         <!-- Serviceutils -->
192         <profile>
193             <id>serviceutils</id>
194             <activation>
195                 <activeByDefault>true</activeByDefault>
196             </activation>
197             <dependencies>
198                 <dependency>
199                     <groupId>org.opendaylight.serviceutils</groupId>
200                     <artifactId>odl-serviceutils-srm</artifactId>
201                     <type>xml</type>
202                     <classifier>features</classifier>
203                 </dependency>
204                 <dependency>
205                     <groupId>org.opendaylight.serviceutils</groupId>
206                     <artifactId>odl-serviceutils-tools</artifactId>
207                     <type>xml</type>
208                     <classifier>features</classifier>
209                 </dependency>
210             </dependencies>
211         </profile>
212     </profiles>
213 </project>