df6d074412cab963f4277ccbb5ef143b210c6719
[netconf.git] / transport / transport-tls / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11     <modelVersion>4.0.0</modelVersion>
12
13     <parent>
14         <groupId>org.opendaylight.netconf</groupId>
15         <artifactId>netconf-parent</artifactId>
16         <version>6.0.1-SNAPSHOT</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>transport-tls</artifactId>
21     <name>${project.artifactId}</name>
22     <packaging>bundle</packaging>
23     <description>NETCONF TLS transport</description>
24
25     <dependencies>
26         <dependency>
27             <groupId>io.netty</groupId>
28             <artifactId>netty-buffer</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>io.netty</groupId>
32             <artifactId>netty-common</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>io.netty</groupId>
36             <artifactId>netty-handler</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>io.netty</groupId>
40             <artifactId>netty-transport</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.bouncycastle</groupId>
44             <artifactId>bcprov-jdk18on</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.netconf</groupId>
52             <artifactId>keystore-api</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.netconf</groupId>
56             <artifactId>transport-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.netconf</groupId>
60             <artifactId>transport-tcp</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.netconf</groupId>
64             <artifactId>truststore-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.netconf.model</groupId>
68             <artifactId>draft-ietf-netconf-crypto-types</artifactId>
69         </dependency>
70
71         <!-- testing -->
72         <dependency>
73             <groupId>org.bouncycastle</groupId>
74             <artifactId>bcpkix-jdk18on</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>io.netty</groupId>
79             <artifactId>netty-transport-native-epoll</artifactId>
80             <classifier>linux-x86_64</classifier>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
85             <artifactId>rfc6991-ietf-inet-types</artifactId>
86             <scope>test</scope>
87         </dependency>
88     </dependencies>
89 </project>