15d6b3659a75567f10bc6c55c118cedb7c457e18
[netconf.git] / features / netconf-connector / features-netconf-connector / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 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
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>feature-repo-parent</artifactId>
15     <version>12.0.3</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>features-netconf-connector</artifactId>
21   <version>5.0.3-SNAPSHOT</version>
22   <packaging>feature</packaging>
23
24   <properties>
25     <!-- Skip SFT as some of the features are mutually exclusive, i.e. SFT may fail
26          if certain features are installed together. -->
27     <skip.karaf.featureTest>true</skip.karaf.featureTest>
28   </properties>
29
30   <dependencyManagement>
31     <dependencies>
32       <dependency>
33         <groupId>${project.groupId}</groupId>
34         <artifactId>netconf-artifacts</artifactId>
35         <version>${project.version}</version>
36         <scope>import</scope>
37         <type>pom</type>
38       </dependency>
39     </dependencies>
40   </dependencyManagement>
41
42   <dependencies>
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>odl-netconf-clustered-topology</artifactId>
46       <type>xml</type>
47       <classifier>features</classifier>
48     </dependency>
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>odl-netconf-connector</artifactId>
52       <type>xml</type>
53       <classifier>features</classifier>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>odl-netconf-connector-all</artifactId>
58       <type>xml</type>
59       <classifier>features</classifier>
60     </dependency>
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>odl-netconf-callhome-ssh</artifactId>
64       <type>xml</type>
65       <classifier>features</classifier>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>odl-netconf-console</artifactId>
70       <type>xml</type>
71       <classifier>features</classifier>
72     </dependency>
73     <dependency>
74       <groupId>${project.groupId}</groupId>
75       <artifactId>odl-netconf-topology</artifactId>
76       <type>xml</type>
77       <classifier>features</classifier>
78     </dependency>
79   </dependencies>
80 </project>