Merge "Bug-8187: call home throwing exception on startup"
[netconf.git] / netconf / mdsal-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
12   <parent>
13     <groupId>org.opendaylight.controller</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.7.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>mdsal-netconf-connector</artifactId>
21   <version>1.3.0-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.netconf</groupId>
29         <artifactId>netconf-subsystem</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36
37   <dependencies>
38     <dependency>
39       <groupId>org.opendaylight.yangtools</groupId>
40       <artifactId>yang-data-util</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <artifactId>yang-data-impl</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.yangtools</groupId>
48       <artifactId>object-cache-noop</artifactId>
49     </dependency>
50
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>netconf-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>netconf-mapping-api</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>netconf-util</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>netconf-tcp</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>com.google.guava</groupId>
69       <artifactId>guava</artifactId>
70     </dependency>
71
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal-core-api</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal-dom-config</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.yangtools</groupId>
82       <artifactId>mockito-configuration</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.slf4j</groupId>
86       <artifactId>slf4j-api</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.controller</groupId>
90       <artifactId>config-util</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>config-api</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.netconf</groupId>
98       <artifactId>ietf-netconf</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.controller</groupId>
102       <artifactId>sal-distributed-datastore</artifactId>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>${project.groupId}</groupId>
107       <artifactId>netconf-util</artifactId>
108       <type>test-jar</type>
109       <scope>test</scope>
110     </dependency>
111     <dependency>
112       <groupId>xmlunit</groupId>
113       <artifactId>xmlunit</artifactId>
114       <scope>test</scope>
115     </dependency>
116     <dependency>
117       <groupId>org.opendaylight.yangtools</groupId>
118       <artifactId>yang-test-util</artifactId>
119     </dependency>
120   </dependencies>
121 </project>