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