[maven-release-plugin] prepare release master-tagforprepareonly-controller-bulk-relea...
[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.3</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             <version>0.4.1</version>
39         </dependency>
40     </dependencies>
41
42     <build>
43         <plugins>
44             <plugin>
45                 <groupId>org.apache.maven.plugins</groupId>
46                 <artifactId>maven-jar-plugin</artifactId>
47                 <version>2.4</version>
48                 <executions>
49                     <execution>
50                         <phase>package</phase>
51                         <goals>
52                             <goal>test-jar</goal>
53                         </goals>
54                     </execution>
55                 </executions>
56             </plugin>
57             <plugin>
58                 <groupId>org.apache.felix</groupId>
59                 <artifactId>maven-bundle-plugin</artifactId>
60                 <configuration>
61                     <instructions>
62                         <Bundle-Activator>org.opendaylight.controller.netconf.osgi.NetconfSSHActivator</Bundle-Activator>
63                         <Import-Package>
64                             com.google.common.base,
65                             ch.ethz.ssh2,
66                             ch.ethz.ssh2.signature,
67                             org.apache.commons.io,
68                             org.opendaylight.controller.netconf.util.osgi,
69                             org.opendaylight.controller.usermanager,
70                             org.opendaylight.controller.sal.authorization,
71                             org.opendaylight.controller.sal.utils,
72                             org.osgi.framework,
73                             org.osgi.util.tracker,
74                             org.slf4j,
75                         </Import-Package>
76                     </instructions>
77                 </configuration>
78             </plugin>
79         </plugins>
80     </build>
81
82 </project>