Remove the option to deliver streams over WebSockets
[netconf.git] / apps / netconf-topology-singleton / 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"
10          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>8.0.0-SNAPSHOT</version>
18         <relativePath>../../parent</relativePath>
19     </parent>
20
21     <artifactId>netconf-topology-singleton</artifactId>
22     <name>${project.artifactId}</name>
23     <packaging>bundle</packaging>
24
25     <dependencies>
26         <dependency>
27             <groupId>com.guicedee.services</groupId>
28             <artifactId>javax.inject</artifactId>
29             <optional>true</optional>
30         </dependency>
31         <dependency>
32             <groupId>com.github.spotbugs</groupId>
33             <artifactId>spotbugs-annotations</artifactId>
34             <optional>true</optional>
35         </dependency>
36         <dependency>
37             <groupId>jakarta.annotation</groupId>
38             <artifactId>jakarta.annotation-api</artifactId>
39             <scope>provided</scope>
40             <optional>true</optional>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.controller</groupId>
44             <artifactId>repackaged-akka</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.netconf</groupId>
48             <artifactId>netconf-client-mdsal</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.netconf</groupId>
52             <artifactId>netconf-topology</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>sal-clustering-commons</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal</groupId>
60             <artifactId>mdsal-singleton-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.mdsal.model</groupId>
64             <artifactId>ietf-topology</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.osgi</groupId>
68             <artifactId>org.osgi.service.component.annotations</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.osgi</groupId>
72             <artifactId>org.osgi.service.metatype.annotations</artifactId>
73         </dependency>
74
75         <dependency>
76             <groupId>org.opendaylight.mdsal</groupId>
77             <artifactId>mdsal-eos-dom-simple</artifactId>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.mdsal</groupId>
82             <artifactId>mdsal-singleton-impl</artifactId>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.mdsal</groupId>
87             <artifactId>mdsal-binding-test-utils</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.controller</groupId>
91             <artifactId>sal-test-model</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.awaitility</groupId>
95             <artifactId>awaitility</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>commons-io</groupId>
99             <artifactId>commons-io</artifactId>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>com.typesafe.akka</groupId>
104             <artifactId>akka-testkit_2.13</artifactId>
105         </dependency>
106     </dependencies>
107 </project>