83c656c4adb8d8a5f4f91c888fa7f91be7af93f5
[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>1.6.0-SNAPSHOT</version>
15     <relativePath>../netconf-parent</relativePath>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>sal-netconf-connector</artifactId>
20
21   <!-- Preserve version from mdsal -->
22   <version>1.9.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>sal-common-util</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal-connector-api</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>${project.groupId}</groupId>
36       <artifactId>ietf-netconf-monitoring</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>ietf-netconf-notifications</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
44       <artifactId>rfc7895</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>${project.groupId}</groupId>
48       <artifactId>netconf-client</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>${project.groupId}</groupId>
52       <artifactId>netconf-notifications-api</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.mdsal</groupId>
56       <artifactId>mdsal-binding-api</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.mdsal</groupId>
60       <artifactId>mdsal-binding-generator-impl</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.mdsal.model</groupId>
64       <artifactId>ietf-topology</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>sal-broker-impl</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.yangtools</groupId>
72       <artifactId>yang-data-impl</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.yangtools</groupId>
76       <artifactId>yang-model-api</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.yangtools</groupId>
80       <artifactId>yang-model-util</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.yangtools</groupId>
84       <artifactId>yang-parser-impl</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.yangtools</groupId>
88       <artifactId>yang-data-codec-gson</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.yangtools</groupId>
92       <artifactId>yang-data-codec-xml</artifactId>
93       <version>2.1.8</version>
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>org.slf4j</groupId>
105       <artifactId>slf4j-api</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>org.xmlunit</groupId>
109       <artifactId>xmlunit-legacy</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>${project.groupId}</groupId>
113       <artifactId>netconf-impl</artifactId>
114       <scope>test</scope>
115     </dependency>
116     <dependency>
117       <groupId>${project.groupId}</groupId>
118       <artifactId>netconf-mapping-api</artifactId>
119       <scope>test</scope>
120     </dependency>
121     <dependency>
122       <groupId>${project.groupId}</groupId>
123       <artifactId>netconf-util</artifactId>
124       <type>test-jar</type>
125       <scope>test</scope>
126     </dependency>
127     <dependency>
128       <groupId>org.opendaylight.mdsal</groupId>
129       <artifactId>mdsal-binding-dom-adapter</artifactId>
130       <scope>test</scope>
131     </dependency>
132     <dependency>
133       <groupId>org.opendaylight.mdsal</groupId>
134       <artifactId>mdsal-binding-dom-adapter</artifactId>
135       <type>test-jar</type>
136       <scope>test</scope>
137     </dependency>
138     <dependency>
139       <groupId>org.hamcrest</groupId>
140       <artifactId>hamcrest-core</artifactId>
141     </dependency>
142     <dependency>
143       <groupId>com.google.code.gson</groupId>
144       <artifactId>gson</artifactId>
145     </dependency>
146     <dependency>
147       <groupId>org.awaitility</groupId>
148       <artifactId>awaitility</artifactId>
149       <scope>test</scope>
150     </dependency>
151     <dependency>
152       <groupId>org.opendaylight.yangtools</groupId>
153       <artifactId>yang-test-util</artifactId>
154     </dependency>
155   </dependencies>
156
157   <scm>
158     <connection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</connection>
159     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</developerConnection>
160     <tag>HEAD</tag>
161     <url>https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=summary</url>
162   </scm>
163 </project>