Bumping versions by 0.0.1 for next dev cycle
[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.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.5.1-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>netconf-config-dispatcher</artifactId>
20   <version>1.1.1-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22
23     <dependencyManagement>
24         <dependencies>
25             <dependency>
26                 <groupId>org.opendaylight.netconf</groupId>
27                 <artifactId>netconf-subsystem</artifactId>
28                 <version>${project.version}</version>
29                <type>pom</type>
30                <scope>import</scope>
31             </dependency>
32         </dependencies>
33     </dependencyManagement>
34
35   <dependencies>
36       <dependency>
37           <groupId>org.opendaylight.controller</groupId>
38           <artifactId>config-api</artifactId>
39       </dependency>
40       <dependency>
41           <groupId>${project.groupId}</groupId>
42           <artifactId>netconf-client</artifactId>
43       </dependency>
44
45       <dependency>
46           <groupId>org.opendaylight.controller</groupId>
47           <artifactId>config-manager</artifactId>
48           <type>test-jar</type>
49           <scope>test</scope>
50       </dependency>
51       <dependency>
52           <groupId>org.opendaylight.controller</groupId>
53           <artifactId>config-manager</artifactId>
54           <scope>test</scope>
55       </dependency>
56       <dependency>
57           <groupId>org.opendaylight.controller</groupId>
58           <artifactId>config-util</artifactId>
59           <scope>test</scope>
60       </dependency>
61       <dependency>
62           <groupId>org.opendaylight.controller</groupId>
63           <artifactId>netty-threadgroup-config</artifactId>
64           <scope>test</scope>
65       </dependency>
66       <dependency>
67           <groupId>org.opendaylight.controller</groupId>
68           <artifactId>netty-timer-config</artifactId>
69           <scope>test</scope>
70       </dependency>
71       <dependency>
72           <groupId>org.opendaylight.yangtools</groupId>
73           <artifactId>mockito-configuration</artifactId>
74           <scope>test</scope>
75       </dependency>
76   </dependencies>
77 </project>