Merge "Skip SFT in features-netconf-connector"
[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"
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
14   <parent>
15     <groupId>org.opendaylight.odlparent</groupId>
16     <artifactId>feature-repo-parent</artifactId>
17     <version>2.0.0</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.netconf</groupId>
22   <artifactId>features-netconf-connector</artifactId>
23   <version>1.3.0-SNAPSHOT</version>
24   <packaging>feature</packaging>
25
26   <properties>
27     <!-- Skip SFT as some of the features are mutually exclusive, i.e. SFT may fail
28          if certain features are installed together. -->
29     <skip.karaf.featureTest>true</skip.karaf.featureTest>
30   </properties>
31
32   <dependencies>
33     <dependency>
34       <groupId>${project.groupId}</groupId>
35       <artifactId>odl-message-bus</artifactId>
36       <version>${project.version}</version>
37       <type>xml</type>
38       <classifier>features</classifier>
39     </dependency>
40     <dependency>
41       <groupId>${project.groupId}</groupId>
42       <artifactId>odl-netconf-clustered-topology</artifactId>
43       <version>${project.version}</version>
44       <type>xml</type>
45       <classifier>features</classifier>
46     </dependency>
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>odl-netconf-connector</artifactId>
50       <version>${project.version}</version>
51       <type>xml</type>
52       <classifier>features</classifier>
53     </dependency>
54     <dependency>
55       <groupId>${project.groupId}</groupId>
56       <artifactId>odl-netconf-connector-all</artifactId>
57       <version>${project.version}</version>
58       <type>xml</type>
59       <classifier>features</classifier>
60     </dependency>
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>odl-netconf-connector-ssh</artifactId>
64       <version>${project.version}</version>
65       <type>xml</type>
66       <classifier>features</classifier>
67     </dependency>
68     <dependency>
69       <groupId>${project.groupId}</groupId>
70       <artifactId>odl-netconf-callhome-ssh</artifactId>
71       <version>${project.version}</version>
72       <type>xml</type>
73       <classifier>features</classifier>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>odl-netconf-console</artifactId>
78       <version>${project.version}</version>
79       <type>xml</type>
80       <classifier>features</classifier>
81     </dependency>
82     <dependency>
83       <groupId>${project.groupId}</groupId>
84       <artifactId>odl-netconf-topology</artifactId>
85       <version>${project.version}</version>
86       <type>xml</type>
87       <classifier>features</classifier>
88     </dependency>
89   </dependencies>
90 </project>