Add blueprint wiring for netconf-client
[netconf.git] / netconf / netconf-config-dispatcher / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2013 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/maven-v4_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.10.0-SNAPSHOT</version>
15         <relativePath/>
16     </parent>
17
18   <!--TODO Delete this bundle as soon as https://git.opendaylight.org/gerrit/#/c/46621/ is merged.-->
19
20   <groupId>org.opendaylight.netconf</groupId>
21   <artifactId>netconf-config-dispatcher</artifactId>
22   <version>1.2.0-SNAPSHOT</version>
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.controller</groupId>
40           <artifactId>config-api</artifactId>
41       </dependency>
42       <dependency>
43           <groupId>${project.groupId}</groupId>
44           <artifactId>netconf-client</artifactId>
45       </dependency>
46
47       <dependency>
48           <groupId>org.opendaylight.controller</groupId>
49           <artifactId>config-manager</artifactId>
50           <type>test-jar</type>
51           <scope>test</scope>
52       </dependency>
53       <dependency>
54           <groupId>org.opendaylight.controller</groupId>
55           <artifactId>config-manager</artifactId>
56           <scope>test</scope>
57       </dependency>
58       <dependency>
59           <groupId>org.opendaylight.controller</groupId>
60           <artifactId>config-util</artifactId>
61           <scope>test</scope>
62       </dependency>
63       <dependency>
64           <groupId>org.opendaylight.controller</groupId>
65           <artifactId>netty-threadgroup-config</artifactId>
66           <scope>test</scope>
67       </dependency>
68       <dependency>
69           <groupId>org.opendaylight.controller</groupId>
70           <artifactId>netty-timer-config</artifactId>
71           <scope>test</scope>
72       </dependency>
73       <dependency>
74           <groupId>org.opendaylight.yangtools</groupId>
75           <artifactId>mockito-configuration</artifactId>
76           <scope>test</scope>
77       </dependency>
78   </dependencies>
79 </project>