Add 'protocol-framework/' from commit '5d015c2c5f800d136406c15fcb64fd531d4ffc26'
[netconf.git] / features / netconf-connector / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2017 Red Hat, Inc. and others.
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>odlparent</artifactId>
15         <version>2.0.2</version>
16         <relativePath/>
17     </parent>
18     <groupId>org.opendaylight.netconf</groupId>
19     <artifactId>features-netconf-connector-aggregator</artifactId>
20     <version>1.3.0-SNAPSHOT</version>
21     <packaging>pom</packaging>
22
23     <properties>
24       <commons.opendaylight.version>1.9.0-SNAPSHOT</commons.opendaylight.version>
25       <controller.mdsal.version>1.6.0-SNAPSHOT</controller.mdsal.version>
26       <config.version>0.7.0-SNAPSHOT</config.version>
27       <features.test.version>1.9.0</features.test.version>
28       <mdsal.version>2.3.0-SNAPSHOT</mdsal.version>
29       <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
30       <netconf.version>1.3.0-SNAPSHOT</netconf.version>
31       <netconf.connector.version>1.6.0-SNAPSHOT</netconf.connector.version>
32       <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
33     </properties>
34
35     <modules>
36         <module>features-netconf-connector</module>
37         <module>odl-message-bus</module>
38         <module>odl-netconf-clustered-topology</module>
39         <module>odl-netconf-connector</module>
40         <module>odl-netconf-connector-all</module>
41         <module>odl-netconf-connector-ssh</module>
42         <module>odl-netconf-callhome-ssh</module>
43         <module>odl-netconf-console</module>
44         <module>odl-netconf-topology</module>
45     </modules>
46
47   <dependencyManagement>
48     <dependencies>
49       <dependency>
50         <groupId>org.opendaylight.netconf</groupId>
51         <artifactId>netconf-artifacts</artifactId>
52         <version>1.3.0-SNAPSHOT</version>
53         <type>pom</type>
54         <scope>import</scope>
55       </dependency>
56     </dependencies>
57   </dependencyManagement>
58
59   <dependencies>
60     <dependency>
61       <groupId>org.opendaylight.yangtools</groupId>
62       <artifactId>features-yangtools</artifactId>
63       <version>${yangtools.version}</version>
64       <classifier>features</classifier>
65       <type>xml</type>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>features-mdsal</artifactId>
70       <version>${controller.mdsal.version}</version>
71       <classifier>features</classifier>
72       <type>xml</type>
73       <scope>runtime</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.mdsal.model</groupId>
77       <artifactId>features-mdsal-model</artifactId>
78       <version>${mdsal.model.version}</version>
79       <classifier>features</classifier>
80       <type>xml</type>
81       <scope>runtime</scope>
82     </dependency>
83     <dependency>
84       <groupId>${project.groupId}</groupId>
85       <artifactId>features-netconf</artifactId>
86       <classifier>features</classifier>
87       <type>xml</type>
88     </dependency>
89     <dependency>
90       <groupId>${project.groupId}</groupId>
91       <artifactId>sal-netconf-connector</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.netconf</groupId>
95       <artifactId>messagebus-netconf</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>${project.groupId}</groupId>
99       <artifactId>netconf-console</artifactId>
100       <version>${project.version}</version>
101     </dependency>
102     <dependency>
103       <groupId>${project.groupId}</groupId>
104       <artifactId>netconf-topology</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>${project.groupId}</groupId>
108       <artifactId>netconf-topology-config</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>${project.groupId}</groupId>
112       <artifactId>netconf-tcp</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>${project.groupId}</groupId>
116       <artifactId>netconf-ssh</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>org.bouncycastle</groupId>
120       <artifactId>bcpkix-jdk15on</artifactId>
121       <version>${bouncycastle.version}</version>
122     </dependency>
123     <dependency>
124       <groupId>org.bouncycastle</groupId>
125       <artifactId>bcprov-jdk15on</artifactId>
126       <version>${bouncycastle.version}</version>
127     </dependency>
128     <dependency>
129       <groupId>${project.groupId}</groupId>
130       <artifactId>netconf-topology-singleton</artifactId>
131     </dependency>
132     <dependency>
133       <groupId>${project.groupId}</groupId>
134       <artifactId>callhome-model</artifactId>
135     </dependency>
136     <dependency>
137       <groupId>${project.groupId}</groupId>
138       <artifactId>callhome-provider</artifactId>
139     </dependency>
140     <dependency>
141       <groupId>${project.groupId}</groupId>
142       <artifactId>callhome-protocol</artifactId>
143     </dependency>
144     <dependency>
145       <groupId>${project.groupId}</groupId>
146       <artifactId>netconf-connector-config</artifactId>
147     </dependency>
148     <dependency>
149       <groupId>${project.groupId}</groupId>
150       <artifactId>netconf-config</artifactId>
151     </dependency>
152   </dependencies>
153
154   <scm>
155     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
156     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
157     <tag>HEAD</tag>
158     <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
159   </scm>
160 </project>