Release Nitrogen
[integration/distribution.git] / features / singles / odl-distribution-version / 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>2.0.5</version>
17         <relativePath/>
18     </parent>
19     <groupId>org.opendaylight.integration</groupId>
20     <artifactId>odl-distribution-version</artifactId>
21     <version>0.7.1</version>
22     <packaging>feature</packaging>
23     <!-- <name> formatting is used by autorelease to parse and notify projects on
24          build failure. Please do not modify this unless you have a good reason. -->
25     <name>ODL :: integration :: ${project.artifactId}</name>
26     <description>Single feature for Version functionality.</description>
27     <url>https://wiki.opendaylight.org/view/Integration/Distribution</url>
28     <licenses>
29         <license>
30             <name>Eclipse Public License v1.0</name>
31             <url>http://www.eclipse.org/legal/epl-v10.html</url>
32         </license>
33     </licenses>
34     <!-- FIXME: Add developers section -->
35     <scm>
36         <connection>scm:git:https://git.opendaylight.org/gerrit/integration/distribution.git</connection>
37         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/integration/distribution.git</developerConnection>
38         <url>https://git.opendaylight.org/gerrit/gitweb?p=integration/distribution.git;a=tree;f=features/singles/odl-distribution-version;hb=HEAD</url>
39         <tag>HEAD</tag>
40     </scm>
41     <dependencyManagement>
42         <dependencies>
43             <dependency>
44                 <groupId>${project.groupId}</groupId>
45                 <artifactId>all-artifacts</artifactId>
46                 <version>${project.version}</version>
47                 <scope>import</scope>
48                 <type>pom</type>
49             </dependency>
50         </dependencies>
51     </dependencyManagement>
52     <dependencies>
53         <!-- Version module jar and config. -->
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>version</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>version</artifactId>
61             <type>xml</type>
62             <classifier>config</classifier>
63         </dependency>
64         <!-- External single feature dependencies. -->
65         <dependency>
66             <groupId>org.opendaylight.controller</groupId>
67             <artifactId>odl-config-persister</artifactId>
68             <!-- This pulls in both config-api and yang-common -->
69             <type>xml</type>
70             <classifier>features</classifier>
71         </dependency>
72         <!-- Additional dependencies are needed because config-parent also requires sal-binding-config bundle. -->
73         <dependency>
74             <groupId>org.opendaylight.controller</groupId>
75             <!-- This is an overkill, but odl-mdsal-broker-local is the only feature which contains sal-binding-config
76                  bundle, and odl-mdsal-broker is its nearest ancestor tested to not fail SingleFeatureTest
77                  (others are blacklisted in feature-test so SFT is skipped and they would cause SFT failure here). -->
78             <artifactId>odl-mdsal-broker</artifactId>
79             <type>xml</type>
80             <classifier>features</classifier>
81         </dependency>
82     </dependencies>
83 </project>