0864a52356e63aa59a6b4ccc4397e9ba3e98e1f6
[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>0.2.2-SNAPSHOT</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             <version>${bgpcep.version}</version>
28         </dependency>
29         <dependency>
30             <groupId>com.google.guava</groupId>
31             <artifactId>guava</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.slf4j</groupId>
35             <artifactId>slf4j-api</artifactId>
36         </dependency>
37     </dependencies>
38
39     <build>
40         <plugins>
41             <plugin>
42                 <groupId>org.apache.felix</groupId>
43                 <artifactId>maven-bundle-plugin</artifactId>
44                 <configuration>
45                     <instructions>
46                         <Export-Package>
47                             org.opendaylight.controller.netconf.client,
48                         </Export-Package>
49                         <Import-Package>
50                             com.google.common.base,
51                             com.google.common.collect,
52                             io.netty.channel,
53                             io.netty.channel.socket,
54                             io.netty.util,
55                             io.netty.util.concurrent,
56                             javax.annotation,
57                             javax.net.ssl,
58                             javax.xml.namespace,
59                             javax.xml.parsers,
60                             javax.xml.xpath,
61                             org.opendaylight.controller.netconf.api,
62                             org.opendaylight.controller.netconf.util,
63                             org.opendaylight.controller.netconf.util.xml,
64                             org.opendaylight.protocol.framework,
65                             org.slf4j,
66                             org.w3c.dom,
67                             org.xml.sax
68                         </Import-Package>
69                     </instructions>
70                 </configuration>
71             </plugin>
72         </plugins>
73     </build>
74
75 </project>