Merge "Bug 5475 - File descriptor leak on netconf connector reconnects" into stable...
[netconf.git] / opendaylight / netconf / mdsal-netconf-notification / 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     <parent>
5         <groupId>org.opendaylight.netconf</groupId>
6         <artifactId>netconf-subsystem</artifactId>
7         <version>1.0.2-SNAPSHOT</version>
8     </parent>
9     <artifactId>mdsal-netconf-notification</artifactId>
10     <packaging>bundle</packaging>
11     <name>${project.artifactId}</name>
12
13     <dependencies>
14         <!-- compile dependencies -->
15         <dependency>
16             <groupId>${project.groupId}</groupId>
17             <artifactId>netconf-mapping-api</artifactId>
18         </dependency>
19         <dependency>
20             <groupId>${project.groupId}</groupId>
21             <artifactId>netconf-notifications-impl</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>${project.groupId}</groupId>
25             <artifactId>netconf-notifications-api</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.controller</groupId>
29             <artifactId>sal-binding-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.controller</groupId>
33             <artifactId>sal-binding-config</artifactId>
34         </dependency>
35
36         <dependency>
37             <groupId>org.slf4j</groupId>
38             <artifactId>slf4j-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>com.google.guava</groupId>
42             <artifactId>guava</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.yangtools</groupId>
46             <artifactId>mockito-configuration</artifactId>
47         </dependency>
48     </dependencies>
49
50
51
52     <build>
53         <plugins>
54             <plugin>
55                 <groupId>org.apache.felix</groupId>
56                 <artifactId>maven-bundle-plugin</artifactId>
57                 <configuration>
58                     <instructions>
59                         <Import-Package>*</Import-Package>
60                     </instructions>
61                 </configuration>
62             </plugin>
63             <plugin>
64                 <groupId>org.opendaylight.yangtools</groupId>
65                 <artifactId>yang-maven-plugin</artifactId>
66             </plugin>
67         </plugins>
68     </build>
69
70 </project>