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