73e0a467c040cc3cc8e7f3518e2a209ebdddb453
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2     <parent>
3         <artifactId>netconf-subsystem</artifactId>
4         <groupId>org.opendaylight.controller</groupId>
5         <version>0.2.5-SNAPSHOT</version>
6         <relativePath>../</relativePath>
7     </parent>
8     <modelVersion>4.0.0</modelVersion>
9     <artifactId>netconf-ssh</artifactId>
10     <name>${project.artifactId}</name>
11     <packaging>bundle</packaging>
12
13
14     <dependencies>
15         <dependency>
16             <groupId>${project.groupId}</groupId>
17             <artifactId>netconf-util</artifactId>
18         </dependency>
19         <dependency>
20             <groupId>${project.groupId}</groupId>
21             <artifactId>netconf-api</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.slf4j</groupId>
25             <artifactId>slf4j-api</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.controller.thirdparty</groupId>
29             <artifactId>ganymed</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>commons-io</groupId>
33             <artifactId>commons-io</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.controller</groupId>
37             <artifactId>usermanager</artifactId>
38         </dependency>
39     </dependencies>
40
41     <build>
42         <plugins>
43             <plugin>
44                 <groupId>org.apache.maven.plugins</groupId>
45                 <artifactId>maven-jar-plugin</artifactId>
46                 <version>2.4</version>
47                 <executions>
48                     <execution>
49                         <phase>package</phase>
50                         <goals>
51                             <goal>test-jar</goal>
52                         </goals>
53                     </execution>
54                 </executions>
55             </plugin>
56             <plugin>
57                 <groupId>org.apache.felix</groupId>
58                 <artifactId>maven-bundle-plugin</artifactId>
59                 <configuration>
60                     <instructions>
61                         <Bundle-Activator>org.opendaylight.controller.netconf.osgi.NetconfSSHActivator</Bundle-Activator>
62                         <Import-Package>
63                             com.google.common.base,
64                             ch.ethz.ssh2,
65                             ch.ethz.ssh2.signature,
66                             org.apache.commons.io,
67                             org.opendaylight.controller.netconf.util.osgi,
68                             org.opendaylight.controller.usermanager,
69                             org.opendaylight.controller.sal.authorization,
70                             org.opendaylight.controller.sal.utils,
71                             org.osgi.framework,
72                             org.osgi.util.tracker,
73                             org.slf4j,
74                         </Import-Package>
75                     </instructions>
76                 </configuration>
77             </plugin>
78         </plugins>
79     </build>
80
81 </project>