638d4f3b230b8b1caf2962151cf1950c0209fd4c
[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.3-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.3-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.3-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         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.netconf</groupId>
55             <artifactId>sal-netconf-connector</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>sal-clustering-commons</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.controller</groupId>
63             <artifactId>threadpool-config-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal</groupId>
67             <artifactId>mdsal-singleton-common-api</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.mdsal.model</groupId>
71             <artifactId>ietf-topology</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.mdsal</groupId>
75             <artifactId>mdsal-eos-dom-simple</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.mdsal</groupId>
80             <artifactId>mdsal-singleton-dom-impl</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.mdsal</groupId>
85             <artifactId>mdsal-binding-dom-adapter</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.mdsal</groupId>
90             <artifactId>mdsal-binding-dom-adapter</artifactId>
91             <scope>test</scope>
92             <type>test-jar</type>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.controller</groupId>
96             <artifactId>sal-test-model</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.awaitility</groupId>
101             <artifactId>awaitility</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>commons-io</groupId>
106             <artifactId>commons-io</artifactId>
107             <scope>test</scope>
108         </dependency>
109
110         <dependency>
111             <groupId>com.typesafe.akka</groupId>
112             <artifactId>akka-testkit_2.12</artifactId>
113         </dependency>
114     </dependencies>
115 </project>