Fix transport-http dependency
[netconf.git] / transport / transport-http / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2024 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.4-SNAPSHOT</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>transport-http</artifactId>
21     <name>${project.artifactId}</name>
22     <packaging>bundle</packaging>
23     <description>NETCONF HTTP transport</description>
24
25     <dependencies>
26         <dependency>
27             <!-- serves iana-crypt-hash incl `rounds` property for SHA algorithms -->
28             <!-- excluded from odl-parent via ODLPARENT-285 -->
29             <groupId>commons-codec</groupId>
30             <artifactId>commons-codec</artifactId>
31             <version>1.15</version>
32         </dependency>
33         <dependency>
34             <groupId>io.netty</groupId>
35             <artifactId>netty-buffer</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>io.netty</groupId>
39             <artifactId>netty-common</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>io.netty</groupId>
43             <artifactId>netty-codec-http</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>io.netty</groupId>
47             <artifactId>netty-codec-http2</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>io.netty</groupId>
51             <artifactId>netty-handler</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>io.netty</groupId>
55             <artifactId>netty-transport</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.kohsuke.metainf-services</groupId>
59             <artifactId>metainf-services</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.mdsal.binding.model.iana</groupId>
63             <artifactId>iana-crypt-hash</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
67             <artifactId>rfc6991-ietf-inet-types</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
71             <artifactId>rfc6991-ietf-yang-types</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.netconf</groupId>
75             <artifactId>keystore-api</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.netconf</groupId>
79             <artifactId>transport-api</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.netconf</groupId>
83             <artifactId>transport-tcp</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.netconf</groupId>
87             <artifactId>transport-tls</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.netconf</groupId>
91             <artifactId>truststore-api</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.netconf.model</groupId>
95             <artifactId>draft-ietf-netconf-crypto-types</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.netconf.model</groupId>
99             <artifactId>rfc8341</artifactId>
100         </dependency>
101
102         <dependency>
103             <groupId>org.bouncycastle</groupId>
104             <artifactId>bcpkix-jdk18on</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.bouncycastle</groupId>
109             <artifactId>bcprov-jdk18on</artifactId>
110             <scope>test</scope>
111         </dependency>
112     </dependencies>
113 </project>