Remove the option to deliver streams over WebSockets
[netconf.git] / protocol / netconf-client / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.netconf</groupId>
14     <artifactId>netconf-parent</artifactId>
15     <version>8.0.0-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <artifactId>netconf-client</artifactId>
20   <name>${project.artifactId}</name>
21   <packaging>bundle</packaging>
22
23   <dependencies>
24     <dependency>
25       <groupId>com.github.spotbugs</groupId>
26       <artifactId>spotbugs-annotations</artifactId>
27       <optional>true</optional>
28     </dependency>
29     <dependency>
30       <groupId>com.google.guava</groupId>
31       <artifactId>guava</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>com.guicedee.services</groupId>
35       <artifactId>javax.inject</artifactId>
36       <optional>true</optional>
37     </dependency>
38     <dependency>
39       <groupId>io.netty</groupId>
40       <artifactId>netty-codec</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>io.netty</groupId>
44       <artifactId>netty-common</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>io.netty</groupId>
48       <artifactId>netty-handler</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>io.netty</groupId>
52       <artifactId>netty-transport</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>jakarta.annotation</groupId>
56       <artifactId>jakarta.annotation-api</artifactId>
57       <scope>provided</scope>
58       <optional>true</optional>
59     </dependency>
60     <dependency>
61       <groupId>org.checkerframework</groupId>
62       <artifactId>checker-qual</artifactId>
63       <scope>provided</scope>
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>netconf-api</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.netconf</groupId>
79       <artifactId>netconf-netty-util</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.netconf</groupId>
83       <artifactId>shaded-exificient</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.netconf</groupId>
87       <artifactId>transport-tcp</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.netconf</groupId>
91       <artifactId>transport-ssh</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.netconf</groupId>
95       <artifactId>transport-tls</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.netconf.model</groupId>
99       <artifactId>rfc6241</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.osgi</groupId>
103       <artifactId>org.osgi.service.component.annotations</artifactId>
104     </dependency>
105
106     <dependency>
107       <groupId>org.bouncycastle</groupId>
108       <artifactId>bcpkix-jdk18on</artifactId>
109       <scope>test</scope>
110     </dependency>
111     <dependency>
112       <groupId>org.opendaylight.yangtools</groupId>
113       <artifactId>mockito-configuration</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>org.opendaylight.netconf</groupId>
117       <artifactId>netconf-test-util</artifactId>
118     </dependency>
119   </dependencies>
120
121   <build>
122     <plugins>
123       <plugin>
124         <artifactId>maven-jar-plugin</artifactId>
125         <executions>
126           <execution>
127             <goals>
128               <goal>test-jar</goal>
129             </goals>
130           </execution>
131         </executions>
132       </plugin>
133       <plugin>
134         <artifactId>maven-source-plugin</artifactId>
135         <executions>
136           <execution>
137             <goals>
138               <goal>test-jar-no-fork</goal>
139             </goals>
140           </execution>
141         </executions>
142       </plugin>
143     </plugins>
144   </build>
145
146 </project>