Incrementing versions by 0.1.0 for post-Helium master branch
[controller.git] / opendaylight / config / 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-plugin-parent</artifactId>
14     <version>0.3.0-SNAPSHOT</version>
15     <relativePath>../config-plugin-parent</relativePath>
16   </parent>
17
18   <artifactId>netconf-config-dispatcher</artifactId>
19   <packaging>bundle</packaging>
20
21   <dependencies>
22     <dependency>
23       <groupId>${project.groupId}</groupId>
24       <artifactId>config-api</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>${project.groupId}</groupId>
28       <artifactId>netconf-client</artifactId>
29     </dependency>
30
31       <dependency>
32           <groupId>${project.groupId}</groupId>
33           <artifactId>config-manager</artifactId>
34           <type>test-jar</type>
35           <scope>test</scope>
36       </dependency>
37       <dependency>
38           <groupId>${project.groupId}</groupId>
39           <artifactId>config-manager</artifactId>
40           <scope>test</scope>
41       </dependency>
42       <dependency>
43           <groupId>${project.groupId}</groupId>
44           <artifactId>config-util</artifactId>
45           <scope>test</scope>
46       </dependency>
47       <dependency>
48           <groupId>${project.groupId}</groupId>
49           <artifactId>netty-threadgroup-config</artifactId>
50           <scope>test</scope>
51       </dependency>
52       <dependency>
53           <groupId>${project.groupId}</groupId>
54           <artifactId>netty-timer-config</artifactId>
55           <scope>test</scope>
56       </dependency>
57       <dependency>
58           <groupId>org.opendaylight.yangtools</groupId>
59           <artifactId>mockito-configuration</artifactId>
60           <scope>test</scope>
61       </dependency>
62   </dependencies>
63
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.felix</groupId>
68         <artifactId>maven-bundle-plugin</artifactId>
69         <configuration>
70           <instructions>
71             <Export-Package>org.opendaylight.controller.config.yang.config.netconf,
72                       org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.netconf.rev140408,</Export-Package>
73             <Import-Package>*</Import-Package>
74           </instructions>
75         </configuration>
76       </plugin>
77       <plugin>
78         <groupId>org.opendaylight.yangtools</groupId>
79         <artifactId>yang-maven-plugin</artifactId>
80       </plugin>
81     </plugins>
82   </build>
83 </project>