Release netconf
[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</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.github.spotbugs</groupId>
36             <artifactId>spotbugs-annotations</artifactId>
37             <optional>true</optional>
38         </dependency>
39         <dependency>
40             <groupId>com.google.errorprone</groupId>
41             <artifactId>error_prone_annotations</artifactId>
42             <scope>provided</scope>
43         </dependency>
44         <dependency>
45             <groupId>com.google.guava</groupId>
46             <artifactId>guava</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>io.netty</groupId>
50             <artifactId>netty-buffer</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>io.netty</groupId>
54             <artifactId>netty-common</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>io.netty</groupId>
58             <artifactId>netty-transport</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.bouncycastle</groupId>
62             <artifactId>bcprov-jdk18on</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.kohsuke.metainf-services</groupId>
66             <artifactId>metainf-services</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>yang-common</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.mdsal.binding.model.iana</groupId>
74             <artifactId>iana-crypt-hash</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
78             <artifactId>rfc6991-ietf-yang-types</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.netconf</groupId>
82             <artifactId>keystore-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.netconf</groupId>
86             <artifactId>shaded-sshd</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.netconf</groupId>
90             <artifactId>transport-api</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.netconf</groupId>
94             <artifactId>transport-tcp</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.netconf</groupId>
98             <artifactId>truststore-api</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.netconf.model</groupId>
102             <artifactId>draft-ietf-netconf-crypto-types</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.netconf.model</groupId>
106             <artifactId>rfc8341</artifactId>
107         </dependency>
108
109         <!-- testing -->
110         <dependency>
111             <groupId>io.netty</groupId>
112             <artifactId>netty-transport-native-epoll</artifactId>
113             <classifier>linux-x86_64</classifier>
114             <scope>test</scope>
115         </dependency>
116         <dependency>
117             <!-- x509 certificate generation -->
118             <groupId>org.bouncycastle</groupId>
119             <artifactId>bcpkix-jdk18on</artifactId>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
124             <artifactId>rfc6991-ietf-inet-types</artifactId>
125             <scope>test</scope>
126         </dependency>
127     </dependencies>
128 </project>