Merge "Remove blocking checkedGet call"
[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.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>features-netconf-connector</artifactId>
20   <version>1.1.0-SNAPSHOT</version>
21   <packaging>jar</packaging>
22
23   <properties>
24     <commons.opendaylight.version>1.7.0-SNAPSHOT</commons.opendaylight.version>
25     <controller.mdsal.version>1.4.0-SNAPSHOT</controller.mdsal.version>
26     <config.version>0.5.0-SNAPSHOT</config.version>
27     <features.test.version>1.7.0-SNAPSHOT</features.test.version>
28     <mdsal.version>2.1.0-SNAPSHOT</mdsal.version>
29     <mdsal.model.version>0.9.0-SNAPSHOT</mdsal.model.version>
30     <netconf.version>1.1.0-SNAPSHOT</netconf.version>
31     <netconf.connector.version>1.4.0-SNAPSHOT</netconf.connector.version>
32     <yangtools.version>1.0.0-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   </properties>
40
41   <dependencyManagement>
42     <dependencies>
43       <dependency>
44         <groupId>org.opendaylight.netconf</groupId>
45         <artifactId>netconf-artifacts</artifactId>
46         <version>1.1.0-SNAPSHOT</version>
47         <type>pom</type>
48         <scope>import</scope>
49       </dependency>
50     </dependencies>
51   </dependencyManagement>
52
53   <dependencies>
54     <dependency>
55       <groupId>org.opendaylight.yangtools</groupId>
56       <artifactId>features-yangtools</artifactId>
57       <version>${yangtools.version}</version>
58       <classifier>features</classifier>
59       <type>xml</type>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>features-mdsal</artifactId>
64       <version>${controller.mdsal.version}</version>
65       <classifier>features</classifier>
66       <type>xml</type>
67       <scope>runtime</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.mdsal.model</groupId>
71       <artifactId>features-mdsal-model</artifactId>
72       <version>${mdsal.model.version}</version>
73       <classifier>features</classifier>
74       <type>xml</type>
75       <scope>runtime</scope>
76     </dependency>
77     <dependency>
78       <groupId>${project.groupId}</groupId>
79       <artifactId>features-netconf</artifactId>
80       <classifier>features</classifier>
81       <type>xml</type>
82     </dependency>
83     <dependency>
84       <groupId>${project.groupId}</groupId>
85       <artifactId>sal-netconf-connector</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.netconf</groupId>
89       <artifactId>messagebus-netconf</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.netconf</groupId>
93       <artifactId>messagebus-netconf</artifactId>
94       <type>xml</type>
95       <classifier>config</classifier>
96     </dependency>
97     <dependency>
98       <groupId>${project.groupId}</groupId>
99       <artifactId>netconf-config-dispatcher</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>${project.groupId}</groupId>
103       <artifactId>abstract-topology</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>${project.groupId}</groupId>
107       <artifactId>netconf-topology</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>${project.groupId}</groupId>
111       <artifactId>netconf-topology-config</artifactId>
112       <classifier>config</classifier>
113       <type>xml</type>
114     </dependency>
115     <dependency>
116        <groupId>${project.groupId}</groupId>
117        <artifactId>netconf-topology-config</artifactId>
118        <classifier>clustered-config</classifier>
119        <type>xml</type>
120     </dependency>
121     <dependency>
122       <groupId>${project.groupId}</groupId>
123       <artifactId>netconf-tcp</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>${project.groupId}</groupId>
127       <artifactId>netconf-ssh</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>org.bouncycastle</groupId>
131       <artifactId>bcpkix-jdk15on</artifactId>
132     </dependency>
133     <dependency>
134       <groupId>org.bouncycastle</groupId>
135       <artifactId>bcprov-jdk15on</artifactId>
136     </dependency>
137
138     <dependency>
139       <groupId>${project.groupId}</groupId>
140       <artifactId>netconf-connector-config</artifactId>
141       <version>${netconf.version}</version>
142       <type>xml</type>
143       <classifier>config</classifier>
144     </dependency>
145   </dependencies>
146
147   <scm>
148     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
149     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
150     <tag>HEAD</tag>
151     <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
152   </scm>
153 </project>