Bump versions to 2.0.5-SNAPSHOT
[netconf.git] / netconf / sal-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   <parent>
12     <groupId>org.opendaylight.netconf</groupId>
13     <artifactId>netconf-parent</artifactId>
14     <version>2.0.5-SNAPSHOT</version>
15     <relativePath>../../parent</relativePath>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>sal-netconf-connector</artifactId>
20   <packaging>bundle</packaging>
21
22   <dependencies>
23     <dependency>
24       <groupId>${project.groupId}</groupId>
25       <artifactId>ietf-netconf-monitoring</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>${project.groupId}</groupId>
29       <artifactId>ietf-netconf-monitoring-extension</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>${project.groupId}</groupId>
33       <artifactId>ietf-netconf-notifications</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
37       <artifactId>rfc8525</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>${project.groupId}</groupId>
41       <artifactId>netconf-client</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>netconf-notifications-api</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.mdsal</groupId>
49       <artifactId>mdsal-binding-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.netconf</groupId>
53       <artifactId>netconf-dom-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.mdsal</groupId>
57       <artifactId>mdsal-binding-runtime-spi</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.mdsal</groupId>
61       <artifactId>mdsal-dom-spi</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.mdsal.model</groupId>
65       <artifactId>ietf-topology</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.yangtools</groupId>
69       <artifactId>yang-data-impl</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.yangtools</groupId>
73       <artifactId>yang-model-api</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.yangtools</groupId>
77       <artifactId>yang-model-util</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.yangtools</groupId>
81       <artifactId>yang-parser-impl</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.yangtools</groupId>
85       <artifactId>yang-repo-fs</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.yangtools</groupId>
89       <artifactId>yang-data-codec-gson</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.yangtools</groupId>
93       <artifactId>yang-data-codec-xml</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
97       <artifactId>rfc6991-ietf-inet-types</artifactId>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.mdsal.model</groupId>
101       <artifactId>yang-ext</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>${project.groupId}</groupId>
105       <artifactId>netconf-util</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>com.guicedee.services</groupId>
109       <artifactId>javax.inject</artifactId>
110       <optional>true</optional>
111     </dependency>
112     <dependency>
113       <groupId>org.osgi</groupId>
114       <artifactId>osgi.cmpn</artifactId>
115     </dependency>
116
117     <dependency>
118       <groupId>org.xmlunit</groupId>
119       <artifactId>xmlunit-legacy</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>${project.groupId}</groupId>
123       <artifactId>netconf-impl</artifactId>
124       <scope>test</scope>
125     </dependency>
126     <dependency>
127       <groupId>${project.groupId}</groupId>
128       <artifactId>netconf-mapping-api</artifactId>
129       <scope>test</scope>
130     </dependency>
131     <dependency>
132       <groupId>${project.groupId}</groupId>
133       <artifactId>netconf-util</artifactId>
134       <type>test-jar</type>
135       <scope>test</scope>
136     </dependency>
137     <dependency>
138       <groupId>org.opendaylight.mdsal</groupId>
139       <artifactId>mdsal-binding-test-utils</artifactId>
140     </dependency>
141     <dependency>
142       <groupId>com.google.code.gson</groupId>
143       <artifactId>gson</artifactId>
144     </dependency>
145     <dependency>
146       <groupId>org.awaitility</groupId>
147       <artifactId>awaitility</artifactId>
148     </dependency>
149     <dependency>
150       <groupId>org.opendaylight.yangtools</groupId>
151       <artifactId>yang-test-util</artifactId>
152     </dependency>
153     <dependency>
154       <groupId>org.opendaylight.netconf</groupId>
155       <artifactId>netconf-test-models</artifactId>
156     </dependency>
157   </dependencies>
158
159   <scm>
160     <connection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</connection>
161     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</developerConnection>
162     <tag>HEAD</tag>
163     <url>https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=summary</url>
164   </scm>
165 </project>