16100f0c2a043241ed5a13b06433df3f326b5f11
[controller.git] / opendaylight / netconf / netconf-ssh / 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     <parent>
4         <artifactId>netconf-subsystem</artifactId>
5         <groupId>org.opendaylight.controller</groupId>
6         <version>0.2.3-SNAPSHOT</version>
7         <relativePath>../</relativePath>
8     </parent>
9     <modelVersion>4.0.0</modelVersion>
10     <artifactId>netconf-ssh</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-client</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>${project.groupId}</groupId>
26             <artifactId>netconf-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.slf4j</groupId>
30             <artifactId>slf4j-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.controller.thirdparty</groupId>
34             <artifactId>ganymed</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                         <Bundle-Activator>org.opendaylight.controller.netconf.osgi.NetconfSSHActivator</Bundle-Activator>
46                         <Export-Package>
47                             org.opendaylight.controller.netconf.ssh,
48                         </Export-Package>
49                         <Import-Package>
50                             com.google.common.base,
51                             com.google.common.collect,
52                             ch.ethz.ssh2,
53                             ch.ethz.ssh2.signature,
54                             io.netty.buffer,
55                             io.netty.channel,
56                             io.netty.channel.nio,
57                             io.netty.channel.socket,
58                             io.netty.util,
59                             io.netty.util.concurrent,
60                             javax.annotation,
61                             javax.net.ssl,
62                             javax.xml.namespace,
63                             javax.xml.parsers,
64                             javax.xml.xpath,
65                             org.opendaylight.controller.netconf.api,
66                             org.opendaylight.controller.netconf.client,
67                             org.opendaylight.controller.netconf.util,
68                             org.opendaylight.controller.netconf.util.xml,
69                             org.opendaylight.protocol.framework,
70                             org.osgi.framework,
71                             org.slf4j,
72                             org.w3c.dom,
73                             org.xml.sax
74                         </Import-Package>
75                     </instructions>
76                 </configuration>
77             </plugin>
78         </plugins>
79     </build>
80
81 </project>