368ee7ec537f46ffd7504a86217762ca6571dad8
[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>6.0.1-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         </dependency>
30         <dependency>
31             <groupId>com.github.spotbugs</groupId>
32             <artifactId>spotbugs-annotations</artifactId>
33             <optional>true</optional>
34         </dependency>
35         <dependency>
36             <groupId>jakarta.annotation</groupId>
37             <artifactId>jakarta.annotation-api</artifactId>
38             <scope>provided</scope>
39             <optional>true</optional>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.controller</groupId>
43             <artifactId>repackaged-akka</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.netconf</groupId>
47             <artifactId>netconf-client-mdsal</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.netconf</groupId>
51             <artifactId>netconf-topology</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>sal-clustering-commons</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>threadpool-config-api</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.mdsal</groupId>
63             <artifactId>mdsal-singleton-common-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal.model</groupId>
67             <artifactId>ietf-topology</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.osgi</groupId>
71             <artifactId>org.osgi.service.component.annotations</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.osgi</groupId>
75             <artifactId>org.osgi.service.metatype.annotations</artifactId>
76         </dependency>
77
78         <dependency>
79             <groupId>org.opendaylight.mdsal</groupId>
80             <artifactId>mdsal-eos-dom-simple</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.mdsal</groupId>
85             <artifactId>mdsal-singleton-dom-impl</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.mdsal</groupId>
90             <artifactId>mdsal-binding-test-utils</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.controller</groupId>
94             <artifactId>sal-test-model</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.awaitility</groupId>
98             <artifactId>awaitility</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>commons-io</groupId>
102             <artifactId>commons-io</artifactId>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>com.typesafe.akka</groupId>
107             <artifactId>akka-testkit_2.13</artifactId>
108         </dependency>
109     </dependencies>
110 </project>