Remove superfluous version/groupId declarations
[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>2.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.yangtools</groupId>
33             <artifactId>yang-data-codec-xml</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.netconf</groupId>
37             <artifactId>sal-netconf-connector</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.netconf</groupId>
41             <artifactId>netconf-topology</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller</groupId>
45             <artifactId>sal-clustering-commons</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>threadpool-config-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal</groupId>
53             <artifactId>mdsal-singleton-common-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal.model</groupId>
57             <artifactId>ietf-topology</artifactId>
58         </dependency>
59
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>mdsal-eos-dom-simple</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal</groupId>
67             <artifactId>mdsal-singleton-dom-impl</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.mdsal</groupId>
72             <artifactId>mdsal-binding-test-utils</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.controller</groupId>
76             <artifactId>sal-test-model</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.awaitility</groupId>
80             <artifactId>awaitility</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>commons-io</groupId>
84             <artifactId>commons-io</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>com.typesafe.akka</groupId>
89             <artifactId>akka-testkit_2.13</artifactId>
90         </dependency>
91     </dependencies>
92 </project>