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