4d3d4200ad320a7531f61e7d2930dff15935fbd2
[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>7.0.0</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         <dependency>
71             <groupId>org.opendaylight.netconf.model</groupId>
72             <artifactId>rfc8341</artifactId>
73         </dependency>
74
75         <!-- testing -->
76         <dependency>
77             <groupId>org.bouncycastle</groupId>
78             <artifactId>bcpkix-jdk18on</artifactId>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>io.netty</groupId>
83             <artifactId>netty-transport-native-epoll</artifactId>
84             <classifier>linux-x86_64</classifier>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
89             <artifactId>rfc6991-ietf-inet-types</artifactId>
90             <scope>test</scope>
91         </dependency>
92     </dependencies>
93 </project>