Bug 6714 - Use singleton service in clustered netconf topology
[netconf.git] / netconf / abstract-topology / 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.odlparent</groupId>
16         <artifactId>bundle-parent</artifactId>
17         <version>1.8.0-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.netconf</groupId>
22     <artifactId>abstract-topology</artifactId>
23     <version>1.2.0-SNAPSHOT</version>
24     <packaging>bundle</packaging>
25
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>org.opendaylight.netconf</groupId>
30                 <artifactId>netconf-subsystem</artifactId>
31                 <version>${project.version}</version>
32                 <type>pom</type>
33                 <scope>import</scope>
34             </dependency>
35         </dependencies>
36     </dependencyManagement>
37
38     <properties>
39     </properties>
40
41     <dependencies>
42         <dependency>
43             <groupId>org.opendaylight.mdsal.model</groupId>
44             <artifactId>ietf-topology</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>sal-common-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>sal-netconf-connector</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>sal-binding-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.controller</groupId>
60             <artifactId>sal-clustering-commons</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.scala-lang</groupId>
64             <artifactId>scala-library</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>com.typesafe.akka</groupId>
68             <artifactId>akka-actor_${scala.version}</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>com.typesafe.akka</groupId>
72             <artifactId>akka-remote_${scala.version}</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>com.typesafe.akka</groupId>
76             <artifactId>akka-cluster_${scala.version}</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>com.typesafe.akka</groupId>
80             <artifactId>akka-osgi_${scala.version}</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>com.typesafe</groupId>
84             <artifactId>config</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.mockito</groupId>
88             <artifactId>mockito-all</artifactId>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>com.jayway.awaitility</groupId>
93             <artifactId>awaitility</artifactId>
94             <version>1.6.5</version>
95             <scope>test</scope>
96         </dependency>
97     </dependencies>
98 </project>