Minimize yangtools dependencies and bump to 2.0.1
[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>3.0.2</version>
16         <relativePath/>
17     </parent>
18     <groupId>org.opendaylight.netconf</groupId>
19     <artifactId>features-netconf-connector-aggregator</artifactId>
20     <version>1.4.0-SNAPSHOT</version>
21     <packaging>pom</packaging>
22
23     <properties>
24       <commons.opendaylight.version>1.10.0-SNAPSHOT</commons.opendaylight.version>
25       <controller.mdsal.version>1.7.0-SNAPSHOT</controller.mdsal.version>
26       <config.version>0.8.0-SNAPSHOT</config.version>
27       <mdsal.version>2.4.0-SNAPSHOT</mdsal.version>
28       <mdsal.model.version>0.12.0-SNAPSHOT</mdsal.model.version>
29       <netconf.version>1.4.0-SNAPSHOT</netconf.version>
30       <netconf.connector.version>1.7.0-SNAPSHOT</netconf.connector.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.4.0-SNAPSHOT</version>
51         <type>pom</type>
52         <scope>import</scope>
53       </dependency>
54       <dependency>
55         <groupId>org.opendaylight.yangtools</groupId>
56         <artifactId>yangtools-artifacts</artifactId>
57         <version>2.0.1</version>
58         <type>pom</type>
59         <scope>import</scope>
60       </dependency>
61     </dependencies>
62   </dependencyManagement>
63
64   <dependencies>
65     <dependency>
66       <groupId>org.opendaylight.yangtools</groupId>
67       <artifactId>features-yangtools</artifactId>
68       <classifier>features</classifier>
69       <type>xml</type>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>features-mdsal</artifactId>
74       <version>${controller.mdsal.version}</version>
75       <classifier>features</classifier>
76       <type>xml</type>
77       <scope>runtime</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.mdsal.model</groupId>
81       <artifactId>features-mdsal-model</artifactId>
82       <version>${mdsal.model.version}</version>
83       <classifier>features</classifier>
84       <type>xml</type>
85       <scope>runtime</scope>
86     </dependency>
87     <dependency>
88       <groupId>${project.groupId}</groupId>
89       <artifactId>features-netconf</artifactId>
90       <classifier>features</classifier>
91       <type>xml</type>
92     </dependency>
93     <dependency>
94       <groupId>${project.groupId}</groupId>
95       <artifactId>sal-netconf-connector</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.netconf</groupId>
99       <artifactId>messagebus-netconf</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>${project.groupId}</groupId>
103       <artifactId>netconf-console</artifactId>
104       <version>${project.version}</version>
105     </dependency>
106     <dependency>
107       <groupId>${project.groupId}</groupId>
108       <artifactId>netconf-topology</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>${project.groupId}</groupId>
112       <artifactId>netconf-topology-config</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>${project.groupId}</groupId>
116       <artifactId>netconf-tcp</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>${project.groupId}</groupId>
120       <artifactId>netconf-ssh</artifactId>
121     </dependency>
122     <dependency>
123       <groupId>${project.groupId}</groupId>
124       <artifactId>netconf-topology-singleton</artifactId>
125     </dependency>
126     <dependency>
127       <groupId>${project.groupId}</groupId>
128       <artifactId>callhome-model</artifactId>
129     </dependency>
130     <dependency>
131       <groupId>${project.groupId}</groupId>
132       <artifactId>callhome-provider</artifactId>
133     </dependency>
134     <dependency>
135       <groupId>${project.groupId}</groupId>
136       <artifactId>callhome-protocol</artifactId>
137     </dependency>
138     <dependency>
139       <groupId>${project.groupId}</groupId>
140       <artifactId>netconf-config</artifactId>
141     </dependency>
142   </dependencies>
143
144   <scm>
145     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
146     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
147     <tag>HEAD</tag>
148     <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
149   </scm>
150 </project>