Update user-guide.rst
[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" 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     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>odlparent</artifactId>
14         <version>3.1.7</version>
15         <relativePath/>
16     </parent>
17     <groupId>org.opendaylight.netconf</groupId>
18     <artifactId>features-netconf-connector-aggregator</artifactId>
19     <version>1.5.4-SNAPSHOT</version>
20     <packaging>pom</packaging>
21
22     <properties>
23       <commons.opendaylight.version>1.11.4-SNAPSHOT</commons.opendaylight.version>
24       <controller.mdsal.version>1.8.4-SNAPSHOT</controller.mdsal.version>
25       <config.version>0.9.4-SNAPSHOT</config.version>
26       <mdsal.version>2.5.4-SNAPSHOT</mdsal.version>
27       <mdsal.model.version>0.13.4-SNAPSHOT</mdsal.model.version>
28       <netconf.version>1.5.4-SNAPSHOT</netconf.version>
29       <netconf.connector.version>1.8.4-SNAPSHOT</netconf.connector.version>
30     </properties>
31
32     <modules>
33         <module>features-netconf-connector</module>
34         <module>odl-message-bus</module>
35         <module>odl-netconf-clustered-topology</module>
36         <module>odl-netconf-connector</module>
37         <module>odl-netconf-connector-all</module>
38         <module>odl-netconf-connector-ssh</module>
39         <module>odl-netconf-callhome-ssh</module>
40         <module>odl-netconf-console</module>
41         <module>odl-netconf-topology</module>
42     </modules>
43
44   <dependencyManagement>
45     <dependencies>
46       <dependency>
47         <groupId>org.opendaylight.netconf</groupId>
48         <artifactId>netconf-artifacts</artifactId>
49         <version>1.5.4-SNAPSHOT</version>
50         <type>pom</type>
51         <scope>import</scope>
52       </dependency>
53       <dependency>
54         <groupId>org.opendaylight.yangtools</groupId>
55         <artifactId>yangtools-artifacts</artifactId>
56         <version>2.0.20</version>
57         <type>pom</type>
58         <scope>import</scope>
59       </dependency>
60     </dependencies>
61   </dependencyManagement>
62
63   <dependencies>
64     <dependency>
65       <groupId>org.opendaylight.yangtools</groupId>
66       <artifactId>features-yangtools</artifactId>
67       <classifier>features</classifier>
68       <type>xml</type>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>features-mdsal</artifactId>
73       <version>${controller.mdsal.version}</version>
74       <classifier>features</classifier>
75       <type>xml</type>
76       <scope>runtime</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.mdsal.model</groupId>
80       <artifactId>features-mdsal-model</artifactId>
81       <version>${mdsal.model.version}</version>
82       <classifier>features</classifier>
83       <type>xml</type>
84       <scope>runtime</scope>
85     </dependency>
86     <dependency>
87       <groupId>${project.groupId}</groupId>
88       <artifactId>features-netconf</artifactId>
89       <classifier>features</classifier>
90       <type>xml</type>
91     </dependency>
92     <dependency>
93       <groupId>${project.groupId}</groupId>
94       <artifactId>sal-netconf-connector</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.netconf</groupId>
98       <artifactId>messagebus-netconf</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>${project.groupId}</groupId>
102       <artifactId>netconf-console</artifactId>
103       <version>${project.version}</version>
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     </dependency>
113     <dependency>
114       <groupId>${project.groupId}</groupId>
115       <artifactId>netconf-tcp</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>${project.groupId}</groupId>
119       <artifactId>netconf-ssh</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>${project.groupId}</groupId>
123       <artifactId>netconf-topology-singleton</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>${project.groupId}</groupId>
127       <artifactId>callhome-model</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>${project.groupId}</groupId>
131       <artifactId>callhome-provider</artifactId>
132     </dependency>
133     <dependency>
134       <groupId>${project.groupId}</groupId>
135       <artifactId>callhome-protocol</artifactId>
136     </dependency>
137     <dependency>
138       <groupId>${project.groupId}</groupId>
139       <artifactId>netconf-config</artifactId>
140     </dependency>
141   </dependencies>
142
143   <scm>
144     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
145     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
146     <tag>HEAD</tag>
147     <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
148   </scm>
149 </project>