Merge changes I0d93e3c4,I34aca892,I74162d9a,Icd48e366
[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.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.7.0-SNAPSHOT</version>
15     <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.6.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.netconf</groupId>
29         <artifactId>netconf-artifacts</artifactId>
30         <version>1.3.0-SNAPSHOT</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36
37   <dependencies>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-common-util</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>sal-connector-api</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>${project.groupId}</groupId>
48       <artifactId>ietf-netconf-monitoring</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>${project.groupId}</groupId>
52       <artifactId>ietf-netconf-notifications</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>${project.groupId}</groupId>
56       <artifactId>ietf-netconf-yang-library</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>${project.groupId}</groupId>
60       <artifactId>netconf-client</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>${project.groupId}</groupId>
64       <artifactId>netconf-notifications-api</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>netty-config-api</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>netty-threadgroup-config</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>sal-binding-api</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.mdsal</groupId>
80       <artifactId>mdsal-binding-generator-impl</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>sal-binding-config</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>threadpool-config-api</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.controller.model</groupId>
92       <artifactId>model-inventory</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.mdsal.model</groupId>
96       <artifactId>ietf-topology</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>sal-broker-impl</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.yangtools</groupId>
104       <artifactId>yang-data-impl</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.yangtools</groupId>
108       <artifactId>yang-model-api</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.yangtools</groupId>
112       <artifactId>yang-model-util</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.yangtools</groupId>
116       <artifactId>yang-parser-impl</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.yangtools</groupId>
120       <artifactId>yang-data-codec-gson</artifactId>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.yangtools</groupId>
124       <artifactId>yang-data-codec-xml</artifactId>
125     </dependency>
126     <dependency>
127       <groupId>org.opendaylight.mdsal.model</groupId>
128       <artifactId>ietf-inet-types-2013-07-15</artifactId>
129     </dependency>
130     <dependency>
131       <groupId>org.slf4j</groupId>
132       <artifactId>slf4j-api</artifactId>
133     </dependency>
134     <dependency>
135       <groupId>xmlunit</groupId>
136       <artifactId>xmlunit</artifactId>
137     </dependency>
138     <dependency>
139       <groupId>org.opendaylight.controller</groupId>
140       <artifactId>config-api</artifactId>
141       <scope>provided</scope>
142     </dependency>
143     <dependency>
144       <groupId>org.opendaylight.controller</groupId>
145       <artifactId>config-manager</artifactId>
146       <scope>test</scope>
147     </dependency>
148     <dependency>
149       <groupId>org.opendaylight.controller</groupId>
150       <artifactId>config-manager</artifactId>
151       <type>test-jar</type>
152       <scope>test</scope>
153     </dependency>
154     <dependency>
155       <groupId>${project.groupId}</groupId>
156       <artifactId>config-netconf-connector</artifactId>
157       <scope>test</scope>
158     </dependency>
159     <dependency>
160       <groupId>org.opendaylight.controller</groupId>
161       <artifactId>config-persister-impl</artifactId>
162       <scope>test</scope>
163     </dependency>
164     <dependency>
165       <groupId>org.opendaylight.controller</groupId>
166       <artifactId>config-util</artifactId>
167     </dependency>
168     <dependency>
169       <groupId>${project.groupId}</groupId>
170       <artifactId>netconf-impl</artifactId>
171       <scope>test</scope>
172     </dependency>
173     <dependency>
174       <groupId>${project.groupId}</groupId>
175       <artifactId>netconf-mapping-api</artifactId>
176       <scope>test</scope>
177     </dependency>
178     <dependency>
179       <groupId>${project.groupId}</groupId>
180       <artifactId>netconf-util</artifactId>
181       <type>test-jar</type>
182       <scope>test</scope>
183     </dependency>
184     <dependency>
185       <groupId>org.opendaylight.controller</groupId>
186       <artifactId>yang-test</artifactId>
187       <scope>test</scope>
188     </dependency>
189     <dependency>
190       <groupId>org.opendaylight.controller</groupId>
191       <artifactId>logback-config</artifactId>
192       <scope>test</scope>
193     </dependency>
194     <dependency>
195       <groupId>org.opendaylight.controller</groupId>
196       <artifactId>sal-binding-broker-impl</artifactId>
197       <type>test-jar</type>
198       <scope>test</scope>
199     </dependency>
200     <dependency>
201       <groupId>org.mockito</groupId>
202       <artifactId>mockito-core</artifactId>
203       <scope>test</scope>
204     </dependency>
205     <dependency>
206       <groupId>org.hamcrest</groupId>
207       <artifactId>hamcrest-core</artifactId>
208     </dependency>
209     <dependency>
210       <groupId>com.google.code.gson</groupId>
211       <artifactId>gson</artifactId>
212     </dependency>
213     <dependency>
214       <groupId>org.opendaylight.controller</groupId>
215       <artifactId>sal-distributed-datastore</artifactId>
216       <scope>test</scope>
217     </dependency>
218     <dependency>
219       <groupId>org.powermock</groupId>
220       <artifactId>powermock-module-junit4</artifactId>
221       <scope>test</scope>
222     </dependency>
223     <dependency>
224       <groupId>org.powermock</groupId>
225       <artifactId>powermock-api-mockito</artifactId>
226       <scope>test</scope>
227     </dependency>
228     <dependency>
229       <groupId>org.opendaylight.yangtools</groupId>
230       <artifactId>yang-test-util</artifactId>
231     </dependency>
232   </dependencies>
233
234   <scm>
235     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
236     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
237     <tag>HEAD</tag>
238     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
239   </scm>
240
241   <build>
242     <plugins>
243       <plugin>
244         <groupId>org.apache.maven.plugins</groupId>
245         <artifactId>maven-checkstyle-plugin</artifactId>
246         <configuration>
247           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
248         </configuration>
249       </plugin>
250     </plugins>
251   </build>
252 </project>