f557a21aedc12b28c96a396ddc5953f05b28d6bd
[controller.git] / opendaylight / netconf / netconf-client / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          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         <artifactId>netconf-subsystem</artifactId>
7         <groupId>org.opendaylight.controller</groupId>
8         <version>${netconf.version}</version>
9     </parent>
10     <artifactId>netconf-client</artifactId>
11     <name>${project.artifactId}</name>
12     <packaging>bundle</packaging>
13
14
15     <dependencies>
16         <dependency>
17             <groupId>${project.groupId}</groupId>
18             <artifactId>netconf-util</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>${project.groupId}</groupId>
22             <artifactId>netconf-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.bgpcep</groupId>
26             <artifactId>framework</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>com.google.guava</groupId>
30             <artifactId>guava</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.slf4j</groupId>
34             <artifactId>slf4j-api</artifactId>
35         </dependency>
36     </dependencies>
37
38     <build>
39         <plugins>
40             <plugin>
41                 <groupId>org.apache.felix</groupId>
42                 <artifactId>maven-bundle-plugin</artifactId>
43                 <configuration>
44                     <instructions>
45                         <Export-Package>
46                             org.opendaylight.controller.netconf.client,
47                         </Export-Package>
48                         <Import-Package>
49                             com.google.common.base,
50                             com.google.common.collect,
51                             io.netty.channel,
52                             io.netty.channel.socket,
53                             io.netty.util,
54                             io.netty.util.concurrent,
55                             javax.annotation,
56                             javax.net.ssl,
57                             javax.xml.namespace,
58                             javax.xml.parsers,
59                             javax.xml.xpath,
60                             org.opendaylight.controller.netconf.api,
61                             org.opendaylight.controller.netconf.util,
62                             org.opendaylight.controller.netconf.util.xml,
63                             org.opendaylight.protocol.framework,
64                             org.slf4j,
65                             org.w3c.dom,
66                             org.xml.sax
67                         </Import-Package>
68                     </instructions>
69                 </configuration>
70             </plugin>
71         </plugins>
72     </build>
73
74 </project>