Merge "Bug-835:Reserve ports should be logical ports"
[controller.git] / opendaylight / netconf / netconf-ssh / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>netconf-subsystem</artifactId>
7     <version>0.2.5-SNAPSHOT</version>
8     <relativePath>../</relativePath>
9   </parent>
10   <artifactId>netconf-ssh</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <dependency>
16       <groupId>${project.groupId}</groupId>
17       <artifactId>netconf-api</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>${project.groupId}</groupId>
21       <artifactId>netconf-util</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>commons-io</groupId>
25       <artifactId>commons-io</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.bouncycastle</groupId>
29       <artifactId>bcpkix-jdk15on</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.bouncycastle</groupId>
33       <artifactId>bcprov-jdk15on</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>usermanager</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller.thirdparty</groupId>
41       <artifactId>ganymed</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.slf4j</groupId>
45       <artifactId>slf4j-api</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.yangtools</groupId>
49       <artifactId>mockito-configuration</artifactId>
50       <scope>test</scope>
51     </dependency>
52   </dependencies>
53
54   <build>
55     <plugins>
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.ssh.osgi.NetconfSSHActivator</Bundle-Activator>
62             <Import-Package>com.google.common.base,
63               ch.ethz.ssh2,
64               ch.ethz.ssh2.signature,
65               org.apache.commons.io,
66               org.opendaylight.controller.netconf.util.osgi,
67               org.opendaylight.controller.usermanager,
68               org.opendaylight.controller.sal.authorization,
69               org.opendaylight.controller.sal.utils,
70               org.osgi.framework,
71               org.osgi.util.tracker,
72               org.slf4j,
73               org.bouncycastle.openssl,
74               io.netty.bootstrap, io.netty.buffer, io.netty.channel, io.netty.channel.local, io.netty.channel.nio,
75               io.netty.handler.stream, io.netty.util.concurrent, org.apache.commons.lang3,
76               org.opendaylight.controller.netconf.util.messages</Import-Package>
77           </instructions>
78         </configuration>
79       </plugin>
80       <plugin>
81         <groupId>org.apache.maven.plugins</groupId>
82         <artifactId>maven-jar-plugin</artifactId>
83         <executions>
84           <execution>
85             <goals>
86               <goal>test-jar</goal>
87             </goals>
88             <phase>package</phase>
89           </execution>
90         </executions>
91       </plugin>
92     </plugins>
93   </build>
94
95 </project>