Introduce TransportSsh{Client,Server}
[netconf.git] / transport / transport-ssh / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2022 PANTHEON.tech, s.r.o. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.netconf</groupId>
16         <artifactId>netconf-parent</artifactId>
17         <version>7.0.0-SNAPSHOT</version>
18         <relativePath>../../parent</relativePath>
19     </parent>
20
21     <artifactId>transport-ssh</artifactId>
22     <name>${project.artifactId}</name>
23     <packaging>bundle</packaging>
24     <description>NETCONF SSH transport</description>
25
26     <dependencies>
27         <dependency>
28             <!-- serves iana-crypt-hash incl `rounds` property for SHA algorithms -->
29             <!-- excluded from odl-parent via ODLPARENT-285 -->
30             <groupId>commons-codec</groupId>
31             <artifactId>commons-codec</artifactId>
32             <version>1.15</version>
33         </dependency>
34         <dependency>
35             <groupId>com.google.errorprone</groupId>
36             <artifactId>error_prone_annotations</artifactId>
37             <scope>provided</scope>
38         </dependency>
39         <dependency>
40             <groupId>com.google.guava</groupId>
41             <artifactId>guava</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>io.netty</groupId>
45             <artifactId>netty-common</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>io.netty</groupId>
49             <artifactId>netty-transport</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.bouncycastle</groupId>
53             <artifactId>bcprov-jdk18on</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.kohsuke.metainf-services</groupId>
57             <artifactId>metainf-services</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.yangtools</groupId>
61             <artifactId>yang-common</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.netconf</groupId>
65             <artifactId>keystore-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.netconf</groupId>
69             <artifactId>shaded-sshd</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.netconf</groupId>
73             <artifactId>transport-api</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.netconf</groupId>
77             <artifactId>transport-tcp</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.netconf</groupId>
81             <artifactId>truststore-api</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.netconf.model</groupId>
85             <artifactId>draft-ietf-netconf-crypto-types</artifactId>
86         </dependency>
87
88         <!-- testing -->
89         <dependency>
90             <groupId>io.netty</groupId>
91             <artifactId>netty-transport-native-epoll</artifactId>
92             <classifier>linux-x86_64</classifier>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <!-- x509 certificate generation -->
97             <groupId>org.bouncycastle</groupId>
98             <artifactId>bcpkix-jdk18on</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
103             <artifactId>rfc6991-ietf-inet-types</artifactId>
104             <scope>test</scope>
105         </dependency>
106     </dependencies>
107 </project>