Bug 6714 - Use singleton service in clustered netconf topology
[netconf.git] / features / netconf-connector / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2014 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"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>features-parent</artifactId>
15     <version>1.7.1-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>features-netconf-connector</artifactId>
20   <version>1.1.1-SNAPSHOT</version>
21   <packaging>jar</packaging>
22
23   <properties>
24     <commons.opendaylight.version>1.7.1-SNAPSHOT</commons.opendaylight.version>
25     <controller.mdsal.version>1.4.1-SNAPSHOT</controller.mdsal.version>
26     <config.version>0.5.1-SNAPSHOT</config.version>
27     <features.test.version>1.7.1-SNAPSHOT</features.test.version>
28     <mdsal.version>2.1.1-SNAPSHOT</mdsal.version>
29     <mdsal.model.version>0.9.1-SNAPSHOT</mdsal.model.version>
30     <netconf.version>1.1.1-SNAPSHOT</netconf.version>
31     <netconf.connector.version>1.4.1-SNAPSHOT</netconf.connector.version>
32     <yangtools.version>1.0.1-SNAPSHOT</yangtools.version>
33
34     <features.file>features.xml</features.file>
35     <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
36     <config.netconf.client.configfile>01-netconf.xml</config.netconf.client.configfile>
37     <config.netconf.topology.configfile>02-netconf-topology.xml</config.netconf.topology.configfile>
38     <config.netconf.connector.configfile>99-netconf-connector.xml</config.netconf.connector.configfile>
39     <config.netconf.console.configfile>100-netconf-console.xml</config.netconf.console.configfile>
40   </properties>
41
42   <dependencyManagement>
43     <dependencies>
44       <dependency>
45         <groupId>org.opendaylight.netconf</groupId>
46         <artifactId>netconf-artifacts</artifactId>
47         <version>1.1.1-SNAPSHOT</version>
48         <type>pom</type>
49         <scope>import</scope>
50       </dependency>
51     </dependencies>
52   </dependencyManagement>
53
54   <dependencies>
55     <dependency>
56       <groupId>org.opendaylight.yangtools</groupId>
57       <artifactId>features-yangtools</artifactId>
58       <version>${yangtools.version}</version>
59       <classifier>features</classifier>
60       <type>xml</type>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>features-mdsal</artifactId>
65       <version>${controller.mdsal.version}</version>
66       <classifier>features</classifier>
67       <type>xml</type>
68       <scope>runtime</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.mdsal.model</groupId>
72       <artifactId>features-mdsal-model</artifactId>
73       <version>${mdsal.model.version}</version>
74       <classifier>features</classifier>
75       <type>xml</type>
76       <scope>runtime</scope>
77     </dependency>
78     <dependency>
79       <groupId>${project.groupId}</groupId>
80       <artifactId>features-netconf</artifactId>
81       <classifier>features</classifier>
82       <type>xml</type>
83     </dependency>
84     <dependency>
85       <groupId>${project.groupId}</groupId>
86       <artifactId>sal-netconf-connector</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.netconf</groupId>
90       <artifactId>messagebus-netconf</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.netconf</groupId>
94       <artifactId>messagebus-netconf</artifactId>
95       <type>xml</type>
96       <classifier>config</classifier>
97     </dependency>
98     <dependency>
99       <groupId>${project.groupId}</groupId>
100       <artifactId>netconf-config-dispatcher</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>${project.groupId}</groupId>
104       <artifactId>netconf-console</artifactId>
105       <version>${project.version}</version>
106     </dependency>
107     <dependency>
108       <groupId>${project.groupId}</groupId>
109       <artifactId>netconf-console</artifactId>
110       <version>${project.version}</version>
111       <classifier>config</classifier>
112       <type>xml</type>
113     </dependency>
114     <dependency>
115       <groupId>${project.groupId}</groupId>
116       <artifactId>abstract-topology</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>${project.groupId}</groupId>
120       <artifactId>netconf-topology</artifactId>
121     </dependency>
122     <dependency>
123       <groupId>${project.groupId}</groupId>
124       <artifactId>netconf-topology-config</artifactId>
125       <classifier>config</classifier>
126       <type>xml</type>
127     </dependency>
128     <dependency>
129       <groupId>${project.groupId}</groupId>
130       <artifactId>netconf-tcp</artifactId>
131     </dependency>
132     <dependency>
133       <groupId>${project.groupId}</groupId>
134       <artifactId>netconf-ssh</artifactId>
135     </dependency>
136     <dependency>
137       <groupId>org.bouncycastle</groupId>
138       <artifactId>bcpkix-jdk15on</artifactId>
139     </dependency>
140     <dependency>
141       <groupId>org.bouncycastle</groupId>
142       <artifactId>bcprov-jdk15on</artifactId>
143     </dependency>
144     <dependency>
145       <groupId>${project.groupId}</groupId>
146       <artifactId>netconf-topology-singleton</artifactId>
147     </dependency>
148
149     <dependency>
150       <groupId>${project.groupId}</groupId>
151       <artifactId>netconf-connector-config</artifactId>
152       <version>${netconf.version}</version>
153       <type>xml</type>
154       <classifier>config</classifier>
155     </dependency>
156   </dependencies>
157
158   <scm>
159     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
160     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
161     <tag>HEAD</tag>
162     <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
163   </scm>
164 </project>