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