dc872216a87525fb1b5ce7b1431cbdd93e34bf19
[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>6.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.guava</groupId>
36             <artifactId>guava</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>io.netty</groupId>
40             <artifactId>netty-common</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>io.netty</groupId>
44             <artifactId>netty-transport</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.kohsuke.metainf-services</groupId>
48             <artifactId>metainf-services</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.yangtools</groupId>
52             <artifactId>yang-common</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.netconf</groupId>
56             <artifactId>keystore-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.netconf</groupId>
60             <artifactId>shaded-sshd</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.netconf</groupId>
64             <artifactId>transport-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.netconf</groupId>
68             <artifactId>transport-tcp</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.netconf</groupId>
72             <artifactId>truststore-api</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.bouncycastle</groupId>
76             <artifactId>bcprov-jdk18on</artifactId>
77         </dependency>
78
79         <!-- testing -->
80         <dependency>
81             <groupId>io.netty</groupId>
82             <artifactId>netty-transport-native-epoll</artifactId>
83             <classifier>linux-x86_64</classifier>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <!-- x509 certificate generation -->
88             <groupId>org.bouncycastle</groupId>
89             <artifactId>bcpkix-jdk18on</artifactId>
90             <scope>test</scope>
91         </dependency>
92
93     </dependencies>
94 </project>