14e0e70e16845f6067b7f6da82a865e69c35d0ac
[netconf.git] / netconf / 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>1.6.0-SNAPSHOT</version>
18         <relativePath>../netconf-parent</relativePath>
19     </parent>
20
21     <groupId>org.opendaylight.netconf</groupId>
22     <artifactId>netconf-topology-singleton</artifactId>
23     <version>1.6.0-SNAPSHOT</version>
24     <name>${project.artifactId}</name>
25     <packaging>bundle</packaging>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>org.opendaylight.controller</groupId>
31                 <artifactId>config-artifacts</artifactId>
32                 <version>0.10.0-SNAPSHOT</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36         </dependencies>
37     </dependencyManagement>
38
39     <dependencies>
40         <dependency>
41             <groupId>com.typesafe.akka</groupId>
42             <artifactId>akka-actor_2.12</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>com.typesafe.akka</groupId>
46             <artifactId>akka-cluster_2.12</artifactId>
47         </dependency>
48
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-data-codec-xml</artifactId>
52             <version>2.1.8</version>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.netconf</groupId>
56             <artifactId>sal-netconf-connector</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.controller</groupId>
60             <artifactId>sal-clustering-commons</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.controller</groupId>
64             <artifactId>threadpool-config-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.mdsal</groupId>
68             <artifactId>mdsal-singleton-common-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.mdsal.model</groupId>
72             <artifactId>ietf-topology</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.mdsal</groupId>
76             <artifactId>mdsal-eos-dom-simple</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.mdsal</groupId>
81             <artifactId>mdsal-singleton-dom-impl</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.mdsal</groupId>
86             <artifactId>mdsal-binding-dom-adapter</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.mdsal</groupId>
91             <artifactId>mdsal-binding-dom-adapter</artifactId>
92             <scope>test</scope>
93             <type>test-jar</type>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.controller</groupId>
97             <artifactId>sal-test-model</artifactId>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.awaitility</groupId>
102             <artifactId>awaitility</artifactId>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>commons-io</groupId>
107             <artifactId>commons-io</artifactId>
108             <scope>test</scope>
109         </dependency>
110
111         <dependency>
112             <groupId>com.typesafe.akka</groupId>
113             <artifactId>akka-testkit_2.12</artifactId>
114         </dependency>
115     </dependencies>
116 </project>