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