Add 'features/protocol-framework/' from commit 'cb42405784db97d0ce2c5991d12a89b46d185949'
[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.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.controller</groupId>
29         <artifactId>mdsal-artifacts</artifactId>
30         <version>1.6.0-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.0-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</groupId>
83       <artifactId>sal-binding-config</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.controller.model</groupId>
87       <artifactId>model-inventory</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.mdsal.model</groupId>
91       <artifactId>ietf-topology</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.controller</groupId>
95       <artifactId>sal-broker-impl</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.yangtools</groupId>
99       <artifactId>yang-data-impl</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.yangtools</groupId>
103       <artifactId>yang-model-api</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.yangtools</groupId>
107       <artifactId>yang-model-util</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.yangtools</groupId>
111       <artifactId>yang-parser-impl</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.yangtools</groupId>
115       <artifactId>yang-data-codec-gson</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>org.opendaylight.yangtools</groupId>
119       <artifactId>yang-data-codec-xml</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>org.opendaylight.mdsal.model</groupId>
123       <artifactId>ietf-inet-types-2013-07-15</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>org.slf4j</groupId>
127       <artifactId>slf4j-api</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>xmlunit</groupId>
131       <artifactId>xmlunit</artifactId>
132     </dependency>
133     <dependency>
134       <groupId>${project.groupId}</groupId>
135       <artifactId>config-netconf-connector</artifactId>
136       <scope>test</scope>
137     </dependency>
138     <dependency>
139       <groupId>${project.groupId}</groupId>
140       <artifactId>netconf-impl</artifactId>
141       <scope>test</scope>
142     </dependency>
143     <dependency>
144       <groupId>${project.groupId}</groupId>
145       <artifactId>netconf-mapping-api</artifactId>
146       <scope>test</scope>
147     </dependency>
148     <dependency>
149       <groupId>${project.groupId}</groupId>
150       <artifactId>netconf-util</artifactId>
151       <type>test-jar</type>
152       <scope>test</scope>
153     </dependency>
154     <dependency>
155       <groupId>org.opendaylight.controller</groupId>
156       <artifactId>sal-binding-broker-impl</artifactId>
157       <type>test-jar</type>
158       <scope>test</scope>
159     </dependency>
160     <dependency>
161       <groupId>org.mockito</groupId>
162       <artifactId>mockito-core</artifactId>
163       <scope>test</scope>
164     </dependency>
165     <dependency>
166       <groupId>org.hamcrest</groupId>
167       <artifactId>hamcrest-core</artifactId>
168     </dependency>
169     <dependency>
170       <groupId>com.google.code.gson</groupId>
171       <artifactId>gson</artifactId>
172     </dependency>
173     <dependency>
174       <groupId>org.opendaylight.controller</groupId>
175       <artifactId>sal-distributed-datastore</artifactId>
176       <scope>test</scope>
177     </dependency>
178     <dependency>
179       <groupId>org.powermock</groupId>
180       <artifactId>powermock-module-junit4</artifactId>
181       <scope>test</scope>
182     </dependency>
183     <dependency>
184       <groupId>org.powermock</groupId>
185       <artifactId>powermock-api-mockito</artifactId>
186       <scope>test</scope>
187     </dependency>
188     <dependency>
189       <groupId>org.opendaylight.yangtools</groupId>
190       <artifactId>yang-test-util</artifactId>
191     </dependency>
192   </dependencies>
193
194   <scm>
195     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
196     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
197     <tag>HEAD</tag>
198     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
199   </scm>
200
201   <build>
202     <plugins>
203       <plugin>
204         <groupId>org.apache.maven.plugins</groupId>
205         <artifactId>maven-checkstyle-plugin</artifactId>
206         <configuration>
207           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
208         </configuration>
209       </plugin>
210     </plugins>
211   </build>
212 </project>