Release Sulfur
[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>10.0.0</version>
15         <relativePath/>
16     </parent>
17     <groupId>org.opendaylight.integration</groupId>
18     <artifactId>odl-integration-all</artifactId>
19     <!-- TODO: Diferent name? -->
20     <version>0.16.0</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/x/ggYF</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         <!-- Netconf -->
63         <profile>
64             <id>netconf</id>
65             <activation>
66                 <activeByDefault>true</activeByDefault>
67             </activation>
68             <dependencies>
69                 <dependency>
70                     <groupId>org.opendaylight.netconf</groupId>
71                     <artifactId>odl-netconf-callhome-ssh</artifactId>
72                     <classifier>features</classifier>
73                     <type>xml</type>
74                 </dependency>
75                 <dependency>
76                     <groupId>org.opendaylight.netconf</groupId>
77                     <artifactId>odl-netconf-console</artifactId>
78                     <classifier>features</classifier>
79                     <type>xml</type>
80                 </dependency>
81                 <dependency>
82                     <groupId>org.opendaylight.netconf</groupId>
83                     <artifactId>odl-netconf-mdsal</artifactId>
84                     <type>xml</type>
85                     <classifier>features</classifier>
86                 </dependency>
87                 <dependency>
88                     <groupId>org.opendaylight.netconf</groupId>
89                     <artifactId>odl-netconf-topology</artifactId>
90                     <type>xml</type>
91                     <classifier>features</classifier>
92                 </dependency>
93                 <dependency>
94                     <groupId>org.opendaylight.netconf</groupId>
95                     <artifactId>odl-netconf-clustered-topology</artifactId>
96                     <type>xml</type>
97                     <classifier>features</classifier>
98                 </dependency>
99             </dependencies>
100         </profile>
101         <!-- Serviceutils -->
102         <profile>
103             <id>serviceutils</id>
104             <activation>
105                 <activeByDefault>true</activeByDefault>
106             </activation>
107             <dependencies>
108                 <dependency>
109                     <groupId>org.opendaylight.serviceutils</groupId>
110                     <artifactId>odl-serviceutils-srm</artifactId>
111                     <type>xml</type>
112                     <classifier>features</classifier>
113                 </dependency>
114                 <dependency>
115                     <groupId>org.opendaylight.serviceutils</groupId>
116                     <artifactId>odl-serviceutils-tools</artifactId>
117                     <type>xml</type>
118                     <classifier>features</classifier>
119                 </dependency>
120             </dependencies>
121         </profile>
122     </profiles>
123 </project>