Bump versions by x.(y+1).z for next dev cycle
[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>1.9.0-SNAPSHOT</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-SNAPSHOT</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>features4-netconf-connector</module>
38         <module>odl-message-bus</module>
39         <module>odl-netconf-clustered-topology</module>
40         <module>odl-netconf-connector</module>
41         <module>odl-netconf-connector-all</module>
42         <module>odl-netconf-connector-ssh</module>
43         <module>odl-netconf-callhome-ssh</module>
44         <module>odl-netconf-console</module>
45         <module>odl-netconf-topology</module>
46     </modules>
47
48   <dependencyManagement>
49     <dependencies>
50       <dependency>
51         <groupId>org.opendaylight.netconf</groupId>
52         <artifactId>netconf-artifacts</artifactId>
53         <version>1.3.0-SNAPSHOT</version>
54         <type>pom</type>
55         <scope>import</scope>
56       </dependency>
57     </dependencies>
58   </dependencyManagement>
59
60   <dependencies>
61     <dependency>
62       <groupId>org.opendaylight.yangtools</groupId>
63       <artifactId>features-yangtools</artifactId>
64       <version>${yangtools.version}</version>
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>org.opendaylight.mdsal.model</groupId>
78       <artifactId>features-mdsal-model</artifactId>
79       <version>${mdsal.model.version}</version>
80       <classifier>features</classifier>
81       <type>xml</type>
82       <scope>runtime</scope>
83     </dependency>
84     <dependency>
85       <groupId>${project.groupId}</groupId>
86       <artifactId>features-netconf</artifactId>
87       <classifier>features</classifier>
88       <type>xml</type>
89     </dependency>
90     <dependency>
91       <groupId>${project.groupId}</groupId>
92       <artifactId>sal-netconf-connector</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.netconf</groupId>
96       <artifactId>messagebus-netconf</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>${project.groupId}</groupId>
100       <artifactId>netconf-console</artifactId>
101       <version>${project.version}</version>
102     </dependency>
103     <dependency>
104       <groupId>${project.groupId}</groupId>
105       <artifactId>netconf-topology</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>${project.groupId}</groupId>
109       <artifactId>netconf-topology-config</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>${project.groupId}</groupId>
113       <artifactId>netconf-tcp</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>${project.groupId}</groupId>
117       <artifactId>netconf-ssh</artifactId>
118     </dependency>
119     <dependency>
120       <groupId>org.bouncycastle</groupId>
121       <artifactId>bcpkix-jdk15on</artifactId>
122       <version>${bouncycastle.version}</version>
123     </dependency>
124     <dependency>
125       <groupId>org.bouncycastle</groupId>
126       <artifactId>bcprov-jdk15on</artifactId>
127       <version>${bouncycastle.version}</version>
128     </dependency>
129     <dependency>
130       <groupId>${project.groupId}</groupId>
131       <artifactId>netconf-topology-singleton</artifactId>
132     </dependency>
133     <dependency>
134       <groupId>${project.groupId}</groupId>
135       <artifactId>callhome-model</artifactId>
136     </dependency>
137     <dependency>
138       <groupId>${project.groupId}</groupId>
139       <artifactId>callhome-provider</artifactId>
140     </dependency>
141     <dependency>
142       <groupId>${project.groupId}</groupId>
143       <artifactId>callhome-protocol</artifactId>
144     </dependency>
145     <dependency>
146       <groupId>${project.groupId}</groupId>
147       <artifactId>netconf-connector-config</artifactId>
148     </dependency>
149     <dependency>
150       <groupId>${project.groupId}</groupId>
151       <artifactId>netconf-config</artifactId>
152     </dependency>
153   </dependencies>
154
155   <scm>
156     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
157     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
158     <tag>HEAD</tag>
159     <url>https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=summary</url>
160   </scm>
161 </project>