bump netty to version 4.0.10.Final
[controller.git] / opendaylight / netconf / netconf-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <parent>
7         <artifactId>netconf-subsystem</artifactId>
8         <groupId>org.opendaylight.controller</groupId>
9         <version>0.2.1-SNAPSHOT</version>
10     </parent>
11     <modelVersion>4.0.0</modelVersion>
12     <artifactId>netconf-api</artifactId>
13     <name>${project.artifactId}</name>
14     <packaging>bundle</packaging>
15
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.controller</groupId>
19             <artifactId>config-api</artifactId>
20             <version>0.2.1-SNAPSHOT</version>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.bgpcep</groupId>
24             <artifactId>framework</artifactId>
25             <version>${bgpcep.version}</version>
26         </dependency>
27     </dependencies>
28
29     <build>
30         <plugins>
31             <plugin>
32                 <groupId>org.apache.felix</groupId>
33                 <artifactId>maven-bundle-plugin</artifactId>
34                 <configuration>
35                     <instructions>
36                         <Private-Package>
37                         </Private-Package>
38                         <Import-Package>
39                             javax.management,
40                             org.opendaylight.controller.config.api.jmx,
41                             org.opendaylight.protocol.framework,
42                             org.w3c.dom
43                         </Import-Package>
44                         <Export-Package>
45                             org.opendaylight.controller.netconf.api,
46                             org.opendaylight.controller.netconf.api.jmx,
47                         </Export-Package>
48                     </instructions>
49                 </configuration>
50             </plugin>
51         </plugins>
52     </build>
53
54
55 </project>