Merge "BUG-472: fix integration test breakage"
[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</Import-Package>
74           </instructions>
75         </configuration>
76       </plugin>
77       <plugin>
78         <groupId>org.apache.maven.plugins</groupId>
79         <artifactId>maven-jar-plugin</artifactId>
80         <version>2.4</version>
81         <executions>
82           <execution>
83             <goals>
84               <goal>test-jar</goal>
85             </goals>
86             <phase>package</phase>
87           </execution>
88         </executions>
89       </plugin>
90     </plugins>
91   </build>
92
93 </project>