Merge "BUG-1953: fix SAL compatility layer"
[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.3.0-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-auth</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>${project.groupId}</groupId>
25       <artifactId>netconf-util</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>commons-io</groupId>
29       <artifactId>commons-io</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.bouncycastle</groupId>
33       <artifactId>bcpkix-jdk15on</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.bouncycastle</groupId>
37       <artifactId>bcprov-jdk15on</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.apache.sshd</groupId>
41       <artifactId>sshd-core</artifactId>
42     </dependency>
43       <dependency>
44           <groupId>com.google.guava</groupId>
45           <artifactId>guava</artifactId>
46       </dependency>
47     <dependency>
48       <groupId>org.slf4j</groupId>
49       <artifactId>slf4j-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.yangtools</groupId>
53       <artifactId>mockito-configuration</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>netconf-netty-util</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>netconf-client</artifactId>
63       <scope>test</scope>
64     </dependency>
65   </dependencies>
66
67   <build>
68     <plugins>
69       <plugin>
70         <groupId>org.apache.felix</groupId>
71         <artifactId>maven-bundle-plugin</artifactId>
72         <configuration>
73           <instructions>
74             <Bundle-Activator>org.opendaylight.controller.netconf.ssh.osgi.NetconfSSHActivator</Bundle-Activator>
75             <Import-Package>*</Import-Package>
76           </instructions>
77         </configuration>
78       </plugin>
79       <plugin>
80         <groupId>org.apache.maven.plugins</groupId>
81         <artifactId>maven-jar-plugin</artifactId>
82         <executions>
83           <execution>
84             <goals>
85               <goal>test-jar</goal>
86             </goals>
87             <phase>package</phase>
88           </execution>
89         </executions>
90       </plugin>
91     </plugins>
92   </build>
93
94 </project>