bccd4a782f04752f7bc1e457ac23a61520b4515e
[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.mdsal.model</groupId>
124       <artifactId>ietf-inet-types-2013-07-15</artifactId>
125     </dependency>
126     <dependency>
127       <groupId>org.slf4j</groupId>
128       <artifactId>slf4j-api</artifactId>
129     </dependency>
130     <dependency>
131       <groupId>xmlunit</groupId>
132       <artifactId>xmlunit</artifactId>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.controller</groupId>
136       <artifactId>config-api</artifactId>
137       <scope>provided</scope>
138     </dependency>
139     <dependency>
140       <groupId>org.opendaylight.controller</groupId>
141       <artifactId>config-manager</artifactId>
142       <scope>test</scope>
143     </dependency>
144     <dependency>
145       <groupId>org.opendaylight.controller</groupId>
146       <artifactId>config-manager</artifactId>
147       <type>test-jar</type>
148       <scope>test</scope>
149     </dependency>
150     <dependency>
151       <groupId>${project.groupId}</groupId>
152       <artifactId>config-netconf-connector</artifactId>
153       <scope>test</scope>
154     </dependency>
155     <dependency>
156       <groupId>org.opendaylight.controller</groupId>
157       <artifactId>config-persister-impl</artifactId>
158       <scope>test</scope>
159     </dependency>
160     <dependency>
161       <groupId>org.opendaylight.controller</groupId>
162       <artifactId>config-util</artifactId>
163     </dependency>
164     <dependency>
165       <groupId>${project.groupId}</groupId>
166       <artifactId>netconf-impl</artifactId>
167       <scope>test</scope>
168     </dependency>
169     <dependency>
170       <groupId>${project.groupId}</groupId>
171       <artifactId>netconf-mapping-api</artifactId>
172       <scope>test</scope>
173     </dependency>
174     <dependency>
175       <groupId>${project.groupId}</groupId>
176       <artifactId>netconf-util</artifactId>
177       <type>test-jar</type>
178       <scope>test</scope>
179     </dependency>
180     <dependency>
181       <groupId>org.opendaylight.controller</groupId>
182       <artifactId>yang-test</artifactId>
183       <scope>test</scope>
184     </dependency>
185     <dependency>
186       <groupId>org.opendaylight.controller</groupId>
187       <artifactId>logback-config</artifactId>
188       <scope>test</scope>
189     </dependency>
190     <dependency>
191       <groupId>org.opendaylight.controller</groupId>
192       <artifactId>sal-binding-broker-impl</artifactId>
193       <type>test-jar</type>
194       <scope>test</scope>
195     </dependency>
196     <dependency>
197       <groupId>org.mockito</groupId>
198       <artifactId>mockito-core</artifactId>
199       <scope>test</scope>
200     </dependency>
201     <dependency>
202       <groupId>org.hamcrest</groupId>
203       <artifactId>hamcrest-core</artifactId>
204     </dependency>
205     <dependency>
206       <groupId>com.google.code.gson</groupId>
207       <artifactId>gson</artifactId>
208     </dependency>
209     <dependency>
210       <groupId>org.opendaylight.controller</groupId>
211       <artifactId>sal-distributed-datastore</artifactId>
212       <scope>test</scope>
213     </dependency>
214     <dependency>
215       <groupId>org.powermock</groupId>
216       <artifactId>powermock-module-junit4</artifactId>
217       <scope>test</scope>
218     </dependency>
219     <dependency>
220       <groupId>org.powermock</groupId>
221       <artifactId>powermock-api-mockito</artifactId>
222       <scope>test</scope>
223     </dependency>
224     <dependency>
225       <groupId>org.opendaylight.yangtools</groupId>
226       <artifactId>yang-test-util</artifactId>
227     </dependency>
228   </dependencies>
229
230   <scm>
231     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
232     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
233     <tag>HEAD</tag>
234     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
235   </scm>
236
237   <build>
238     <plugins>
239       <plugin>
240         <groupId>org.apache.maven.plugins</groupId>
241         <artifactId>maven-checkstyle-plugin</artifactId>
242         <configuration>
243           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
244         </configuration>
245       </plugin>
246     </plugins>
247   </build>
248 </project>