Update version after SR release
[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.7</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.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>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     <!-- External single feature dependencies in alphabetical order -->
61     <profiles>
62         <!-- COE -->
63         <profile>
64             <id>coe</id>
65             <activation>
66                 <activeByDefault>true</activeByDefault>
67             </activation>
68             <dependencies>
69                 <dependency>
70                     <groupId>org.opendaylight.coe</groupId>
71                     <artifactId>odl-coe</artifactId>
72                     <type>xml</type>
73                     <classifier>features</classifier>
74                 </dependency>
75             </dependencies>
76         </profile>
77         <!-- Genius -->
78         <profile>
79             <id>genius</id>
80             <activation>
81                 <activeByDefault>true</activeByDefault>
82             </activation>
83             <dependencies>
84                 <dependency>
85                     <groupId>org.opendaylight.genius</groupId>
86                     <artifactId>odl-genius-rest</artifactId>
87                     <type>xml</type>
88                     <classifier>features</classifier>
89                 </dependency>
90             </dependencies>
91         </profile>
92         <!-- Netconf -->
93         <profile>
94             <id>netconf</id>
95             <activation>
96                 <activeByDefault>true</activeByDefault>
97             </activation>
98             <dependencies>
99                 <dependency>
100                     <groupId>org.opendaylight.netconf</groupId>
101                     <artifactId>odl-netconf-callhome-ssh</artifactId>
102                     <classifier>features</classifier>
103                     <type>xml</type>
104                 </dependency>
105                 <dependency>
106                     <groupId>org.opendaylight.netconf</groupId>
107                     <artifactId>odl-netconf-console</artifactId>
108                     <classifier>features</classifier>
109                     <type>xml</type>
110                 </dependency>
111                 <dependency>
112                     <groupId>org.opendaylight.netconf</groupId>
113                     <artifactId>odl-netconf-mdsal</artifactId>
114                     <type>xml</type>
115                     <classifier>features</classifier>
116                 </dependency>
117                 <dependency>
118                     <groupId>org.opendaylight.netconf</groupId>
119                     <artifactId>odl-netconf-topology</artifactId>
120                     <type>xml</type>
121                     <classifier>features</classifier>
122                 </dependency>
123                 <dependency>
124                     <groupId>org.opendaylight.netconf</groupId>
125                     <artifactId>odl-netconf-clustered-topology</artifactId>
126                     <type>xml</type>
127                     <classifier>features</classifier>
128                 </dependency>
129             </dependencies>
130         </profile>
131         <!-- Netvirt -->
132         <profile>
133             <id>netvirt</id>
134             <activation>
135                 <activeByDefault>true</activeByDefault>
136             </activation>
137             <dependencies>
138                 <dependency>
139                     <groupId>org.opendaylight.netvirt</groupId>
140                     <artifactId>odl-netvirt-openstack</artifactId>
141                     <type>xml</type>
142                     <classifier>features</classifier>
143                 </dependency>
144             </dependencies>
145         </profile>
146         <!-- SFC -->
147         <profile>
148             <id>sfc</id>
149             <activation>
150                 <activeByDefault>true</activeByDefault>
151             </activation>
152             <dependencies>
153                 <dependency>
154                     <groupId>org.opendaylight.sfc</groupId>
155                     <artifactId>odl-sfc-ios-xe-renderer</artifactId>
156                     <type>xml</type>
157                     <classifier>features</classifier>
158                 </dependency>
159                 <dependency>
160                     <groupId>org.opendaylight.sfc</groupId>
161                     <artifactId>odl-sfc-netconf</artifactId>
162                     <type>xml</type>
163                     <classifier>features</classifier>
164                 </dependency>
165                 <dependency>
166                     <groupId>org.opendaylight.sfc</groupId>
167                     <artifactId>odl-sfc-openflow-renderer</artifactId>
168                     <type>xml</type>
169                     <classifier>features</classifier>
170                 </dependency>
171                 <dependency>
172                     <groupId>org.opendaylight.sfc</groupId>
173                     <artifactId>odl-sfc-vpp-renderer</artifactId>
174                     <type>xml</type>
175                     <classifier>features</classifier>
176                 </dependency>
177             </dependencies>
178         </profile>
179         <!-- Serviceutils -->
180         <profile>
181             <id>serviceutils</id>
182             <activation>
183                 <activeByDefault>true</activeByDefault>
184             </activation>
185             <dependencies>
186                 <dependency>
187                     <groupId>org.opendaylight.serviceutils</groupId>
188                     <artifactId>odl-serviceutils-srm</artifactId>
189                     <type>xml</type>
190                     <classifier>features</classifier>
191                 </dependency>
192                 <dependency>
193                     <groupId>org.opendaylight.serviceutils</groupId>
194                     <artifactId>odl-serviceutils-tools</artifactId>
195                     <type>xml</type>
196                     <classifier>features</classifier>
197                 </dependency>
198             </dependencies>
199         </profile>
200     </profiles>
201 </project>