Add mdsal-singleton-common-api to singleton pom
[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.controller</groupId>
16         <artifactId>config-parent</artifactId>
17         <version>0.6.0-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.netconf</groupId>
22     <artifactId>netconf-topology-singleton</artifactId>
23     <version>1.2.0-SNAPSHOT</version>
24     <name>${project.artifactId}</name>
25     <packaging>bundle</packaging>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>org.opendaylight.netconf</groupId>
31                 <artifactId>netconf-subsystem</artifactId>
32                 <version>${project.version}</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36             <dependency>
37                 <groupId>org.opendaylight.controller</groupId>
38                 <artifactId>mdsal-artifacts</artifactId>
39                 <version>1.5.0-SNAPSHOT</version>
40                 <type>pom</type>
41                 <scope>import</scope>
42             </dependency>
43         </dependencies>
44     </dependencyManagement>
45
46     <dependencies>
47         <dependency>
48             <groupId>org.opendaylight.netconf</groupId>
49             <artifactId>mdsal-netconf-notification</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal.model</groupId>
53             <artifactId>ietf-topology</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>com.typesafe.akka</groupId>
57             <artifactId>akka-actor_2.11</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.netconf</groupId>
61             <artifactId>sal-netconf-connector</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>com.typesafe.akka</groupId>
65             <artifactId>akka-cluster_2.11</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.controller</groupId>
69             <artifactId>sal-clustering-commons</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.mdsal</groupId>
73             <artifactId>mdsal-singleton-common-api</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.mockito</groupId>
77             <artifactId>mockito-all</artifactId>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>com.typesafe.akka</groupId>
82             <artifactId>akka-testkit_2.11</artifactId>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>sal-distributed-datastore</artifactId>
88         </dependency>
89     </dependencies>
90
91 </project>