Merge "Fix findbugs violations in netconf"
[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.5.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.5.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.9.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         </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
74         <dependency>
75             <groupId>org.mockito</groupId>
76             <artifactId>mockito-core</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>com.typesafe.akka</groupId>
80             <artifactId>akka-testkit_2.12</artifactId>
81         </dependency>
82     </dependencies>
83 </project>