Bump versions by x.y.(z+1)
[netconf.git] / netconf / mdsal-netconf-connector / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
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
12   <parent>
13     <groupId>org.opendaylight.netconf</groupId>
14     <artifactId>netconf-parent</artifactId>
15     <version>1.6.4-SNAPSHOT</version>
16     <relativePath>../netconf-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>mdsal-netconf-connector</artifactId>
21   <version>1.6.4-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.yangtools</groupId>
28       <artifactId>yang-data-util</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.yangtools</groupId>
32       <artifactId>yang-data-impl</artifactId>
33     </dependency>
34
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>netconf-api</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>${project.groupId}</groupId>
41       <artifactId>netconf-mapping-api</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>netconf-util</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>mdsal-netconf-tcp</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>com.google.guava</groupId>
53       <artifactId>guava</artifactId>
54     </dependency>
55
56     <dependency>
57       <groupId>org.opendaylight.mdsal</groupId>
58       <artifactId>mdsal-dom-api</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.yangtools</groupId>
62       <artifactId>mockito-configuration</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.slf4j</groupId>
66       <artifactId>slf4j-api</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.netconf</groupId>
70       <artifactId>ietf-netconf</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.mdsal</groupId>
74       <artifactId>mdsal-dom-broker</artifactId>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.mdsal</groupId>
79       <artifactId>mdsal-dom-inmemory-datastore</artifactId>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>${project.groupId}</groupId>
84       <artifactId>netconf-util</artifactId>
85       <type>test-jar</type>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.xmlunit</groupId>
90       <artifactId>xmlunit-legacy</artifactId>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.yangtools</groupId>
95       <artifactId>yang-test-util</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.yangtools</groupId>
99       <artifactId>yang-data-codec-xml</artifactId>
100     </dependency>
101   </dependencies>
102 </project>