Merge "netconf-ssh dependency cleanup"
[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-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.slf4j</groupId>
26             <artifactId>slf4j-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.controller.thirdparty</groupId>
30             <artifactId>ganymed</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>commons-io</groupId>
34             <artifactId>commons-io</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                             ch.ethz.ssh2,
52                             ch.ethz.ssh2.signature,
53                             java.net,
54                             javax.annotation,
55                             org.apache.commons.io,
56                             org.opendaylight.controller.netconf.util,
57                             org.opendaylight.controller.netconf.util.osgi,
58                             org.opendaylight.protocol.framework,
59                             org.osgi.framework,
60                             org.slf4j
61                         </Import-Package>
62                     </instructions>
63                 </configuration>
64             </plugin>
65         </plugins>
66     </build>
67
68 </project>