Bump versions to 4.0.0-SNAPSHOT
[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>4.0.0-SNAPSHOT</version>
18         <relativePath>../../parent</relativePath>
19     </parent>
20
21     <artifactId>netconf-topology-singleton</artifactId>
22     <name>${project.artifactId}</name>
23     <packaging>bundle</packaging>
24
25     <dependencies>
26         <dependency>
27             <groupId>org.opendaylight.controller</groupId>
28             <artifactId>repackaged-akka</artifactId>
29         </dependency>
30
31         <dependency>
32             <groupId>org.opendaylight.netconf</groupId>
33             <artifactId>sal-netconf-connector</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.netconf</groupId>
37             <artifactId>netconf-topology</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.controller</groupId>
41             <artifactId>sal-clustering-commons</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller</groupId>
45             <artifactId>threadpool-config-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.mdsal</groupId>
49             <artifactId>mdsal-singleton-common-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal.model</groupId>
53             <artifactId>ietf-topology</artifactId>
54         </dependency>
55
56         <dependency>
57             <groupId>org.opendaylight.mdsal</groupId>
58             <artifactId>mdsal-eos-dom-simple</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.mdsal</groupId>
63             <artifactId>mdsal-singleton-dom-impl</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.mdsal</groupId>
68             <artifactId>mdsal-binding-test-utils</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.controller</groupId>
72             <artifactId>sal-test-model</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.awaitility</groupId>
76             <artifactId>awaitility</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>commons-io</groupId>
80             <artifactId>commons-io</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>com.typesafe.akka</groupId>
85             <artifactId>akka-testkit_2.13</artifactId>
86         </dependency>
87     </dependencies>
88 </project>