Merge "Bug 5475 - File descriptor leak on netconf connector reconnects" into stable...
[netconf.git] / opendaylight / netconf / netconf-mapping-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.netconf</groupId>
7     <artifactId>netconf-subsystem</artifactId>
8     <version>1.0.2-SNAPSHOT</version>
9   </parent>
10   <artifactId>netconf-mapping-api</artifactId>
11
12   <packaging>bundle</packaging>
13   <name>${project.artifactId}</name>
14
15   <dependencies>
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>netconf-api</artifactId>
19     </dependency>
20       <dependency>
21           <groupId>org.opendaylight.controller</groupId>
22           <artifactId>config-manager-facade-xml</artifactId>
23       </dependency>
24
25     <dependency>
26       <groupId>com.google.guava</groupId>
27       <artifactId>guava</artifactId>
28     </dependency>
29   </dependencies>
30
31   <build>
32     <plugins>
33       <plugin>
34         <groupId>org.apache.felix</groupId>
35         <artifactId>maven-bundle-plugin</artifactId>
36       </plugin>
37         <plugin>
38             <groupId>org.opendaylight.yangtools</groupId>
39             <artifactId>yang-maven-plugin</artifactId>
40         </plugin>
41     </plugins>
42   </build>
43 </project>