Merge "Bug 5475 - File descriptor leak on netconf connector reconnects" into stable...
[netconf.git] / opendaylight / netconf / netconf-notifications-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2015 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
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <modelVersion>4.0.0</modelVersion>
14     <parent>
15         <artifactId>netconf-subsystem</artifactId>
16         <groupId>org.opendaylight.netconf</groupId>
17         <version>1.0.2-SNAPSHOT</version>
18     </parent>
19     <packaging>bundle</packaging>
20     <artifactId>netconf-notifications-impl</artifactId>
21
22     <dependencies>
23         <dependency>
24             <groupId>${project.groupId}</groupId>
25             <artifactId>netconf-notifications-api</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>netconf-util</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.mdsal</groupId>
33             <artifactId>mdsal-binding-generator-impl</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>netconf-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.mdsal</groupId>
41             <artifactId>mdsal-binding-dom-codec</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>ietf-netconf-notifications</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>com.google.guava</groupId>
49             <artifactId>guava</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.slf4j</groupId>
53             <artifactId>slf4j-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>xmlunit</groupId>
57             <artifactId>xmlunit</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.yangtools</groupId>
61             <artifactId>mockito-configuration</artifactId>
62         </dependency>
63     </dependencies>
64
65     <build>
66         <plugins>
67             <plugin>
68                 <groupId>org.apache.felix</groupId>
69                 <artifactId>maven-bundle-plugin</artifactId>
70                 <configuration>
71                     <instructions>
72                         <Bundle-Activator>org.opendaylight.netconf.notifications.impl.osgi.Activator</Bundle-Activator>
73                         <Export-Package>org.opendaylight.netconf.notifications.impl.*</Export-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>