BUG-1617 Extract AuthProvider from netconf ssh
[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-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.opendaylight.controller.thirdparty</groupId>
41       <artifactId>ganymed</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.apache.sshd</groupId>
45       <artifactId>sshd-core</artifactId>
46     </dependency>
47       <dependency>
48           <groupId>com.google.guava</groupId>
49           <artifactId>guava</artifactId>
50       </dependency>
51     <dependency>
52       <groupId>org.slf4j</groupId>
53       <artifactId>slf4j-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.yangtools</groupId>
57       <artifactId>mockito-configuration</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>netconf-netty-util</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>netconf-client</artifactId>
68       <scope>test</scope>
69     </dependency>
70   </dependencies>
71
72   <build>
73     <plugins>
74       <plugin>
75         <groupId>org.apache.felix</groupId>
76         <artifactId>maven-bundle-plugin</artifactId>
77         <configuration>
78           <instructions>
79             <Bundle-Activator>org.opendaylight.controller.netconf.ssh.osgi.NetconfSSHActivator</Bundle-Activator>
80             <Import-Package>*</Import-Package>
81           </instructions>
82         </configuration>
83       </plugin>
84       <plugin>
85         <groupId>org.apache.maven.plugins</groupId>
86         <artifactId>maven-jar-plugin</artifactId>
87         <executions>
88           <execution>
89             <goals>
90               <goal>test-jar</goal>
91             </goals>
92             <phase>package</phase>
93           </execution>
94         </executions>
95       </plugin>
96     </plugins>
97   </build>
98
99 </project>