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