Merge "BUG-7183: do not hard-code scala version"
[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>com.typesafe.akka</groupId>
49             <artifactId>akka-actor_${scala.version}</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>com.typesafe.akka</groupId>
53             <artifactId>akka-cluster_${scala.version}</artifactId>
54         </dependency>
55
56         <dependency>
57             <groupId>org.opendaylight.yangtools</groupId>
58             <artifactId>yang-data-codec-xml</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.netconf</groupId>
62             <artifactId>sal-netconf-connector</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.controller</groupId>
66             <artifactId>sal-clustering-commons</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.mdsal</groupId>
70             <artifactId>mdsal-singleton-common-api</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.mdsal.model</groupId>
74             <artifactId>ietf-topology</artifactId>
75         </dependency>
76
77         <dependency>
78             <groupId>org.mockito</groupId>
79             <artifactId>mockito-core</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>com.typesafe.akka</groupId>
83             <artifactId>akka-testkit_${scala.version}</artifactId>
84         </dependency>
85     </dependencies>
86
87 </project>