Decouple config and netconf subsystems.
[controller.git] / opendaylight / 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.controller</groupId>
13         <artifactId>netconf-subsystem</artifactId>
14         <version>0.4.0-SNAPSHOT</version>
15     </parent>
16
17   <artifactId>netconf-config-dispatcher</artifactId>
18   <packaging>bundle</packaging>
19
20   <dependencies>
21     <dependency>
22       <groupId>${project.groupId}</groupId>
23       <artifactId>config-api</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>netconf-client</artifactId>
28     </dependency>
29
30       <dependency>
31           <groupId>${project.groupId}</groupId>
32           <artifactId>config-manager</artifactId>
33           <type>test-jar</type>
34           <scope>test</scope>
35       </dependency>
36       <dependency>
37           <groupId>${project.groupId}</groupId>
38           <artifactId>config-manager</artifactId>
39           <scope>test</scope>
40       </dependency>
41       <dependency>
42           <groupId>${project.groupId}</groupId>
43           <artifactId>config-util</artifactId>
44           <scope>test</scope>
45       </dependency>
46       <dependency>
47           <groupId>${project.groupId}</groupId>
48           <artifactId>netty-threadgroup-config</artifactId>
49           <scope>test</scope>
50       </dependency>
51       <dependency>
52           <groupId>${project.groupId}</groupId>
53           <artifactId>netty-timer-config</artifactId>
54           <scope>test</scope>
55       </dependency>
56       <dependency>
57           <groupId>org.opendaylight.yangtools</groupId>
58           <artifactId>mockito-configuration</artifactId>
59           <scope>test</scope>
60       </dependency>
61   </dependencies>
62
63   <build>
64     <plugins>
65       <plugin>
66         <groupId>org.apache.felix</groupId>
67         <artifactId>maven-bundle-plugin</artifactId>
68       </plugin>
69         <plugin>
70         <groupId>org.opendaylight.yangtools</groupId>
71         <artifactId>yang-maven-plugin</artifactId>
72     </plugin>
73     </plugins>
74   </build>
75 </project>