Merge "Fix broken ApiDocGeneratorTest"
[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.6.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>mdsal-netconf-connector</artifactId>
21   <version>1.2.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-impl</artifactId>
41
42       <!-- FIXME: this should not be necessary and it hurts shareability -->
43       <exclusions>
44           <exclusion>
45               <groupId>org.opendaylight.yangtools</groupId>
46               <artifactId>object-cache-api</artifactId>
47           </exclusion>
48       </exclusions>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.yangtools</groupId>
52       <artifactId>object-cache-noop</artifactId>
53     </dependency>
54
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>netconf-api</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>netconf-mapping-api</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>netconf-util</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>netconf-tcp</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>com.google.guava</groupId>
73       <artifactId>guava</artifactId>
74     </dependency>
75
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>sal-core-api</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>sal-dom-config</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.yangtools</groupId>
86       <artifactId>mockito-configuration</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.slf4j</groupId>
90       <artifactId>slf4j-api</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>config-util</artifactId>
95     </dependency>
96       <dependency>
97           <groupId>org.opendaylight.controller</groupId>
98           <artifactId>config-api</artifactId>
99       </dependency>
100       <dependency>
101           <groupId>org.opendaylight.netconf</groupId>
102           <artifactId>ietf-netconf</artifactId>
103       </dependency>
104       <dependency>
105           <groupId>org.opendaylight.controller</groupId>
106           <artifactId>sal-distributed-datastore</artifactId>
107           <scope>test</scope>
108       </dependency>
109       <dependency>
110           <groupId>${project.groupId}</groupId>
111           <artifactId>netconf-util</artifactId>
112           <type>test-jar</type>
113           <scope>test</scope>
114       </dependency>
115       <dependency>
116           <groupId>xmlunit</groupId>
117           <artifactId>xmlunit</artifactId>
118           <scope>test</scope>
119       </dependency>
120   </dependencies>
121 </project>