8d800be2f781ed259fd82ea2b9de4f2ee90deb7c
[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>${netconf.version}</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         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.bgpcep</groupId>
23             <artifactId>framework</artifactId>
24         </dependency>
25     </dependencies>
26
27     <build>
28         <plugins>
29             <plugin>
30                 <groupId>org.apache.felix</groupId>
31                 <artifactId>maven-bundle-plugin</artifactId>
32                 <configuration>
33                     <instructions>
34                         <Private-Package>
35                         </Private-Package>
36                         <Import-Package>
37                             javax.management,
38                             org.opendaylight.controller.config.api.jmx,
39                             org.opendaylight.protocol.framework,
40                             org.w3c.dom
41                         </Import-Package>
42                         <Export-Package>
43                             org.opendaylight.controller.netconf.api,
44                             org.opendaylight.controller.netconf.api.jmx,
45                         </Export-Package>
46                     </instructions>
47                 </configuration>
48             </plugin>
49         </plugins>
50     </build>
51
52
53 </project>