Remove superfluous groupId declarations
[controller.git] / features / odl-mdsal-clustering-commons / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2016, 2017 Red Hat, Inc. and others.
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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10     <modelVersion>4.0.0</modelVersion>
11     <parent>
12         <groupId>org.opendaylight.controller</groupId>
13         <artifactId>single-feature-parent</artifactId>
14         <version>2.0.0-SNAPSHOT</version>
15         <relativePath>../single-feature-parent</relativePath>
16     </parent>
17
18     <artifactId>odl-mdsal-clustering-commons</artifactId>
19     <packaging>feature</packaging>
20     <name>OpenDaylight :: Controller :: Clustering Commons</name>
21     <description>Common Clustering utilities</description>
22
23     <dependencies>
24         <dependency>
25             <groupId>org.opendaylight.odlparent</groupId>
26             <artifactId>odl-akka-system-2.5</artifactId>
27             <type>xml</type>
28             <classifier>features</classifier>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.odlparent</groupId>
32             <artifactId>odl-akka-persistence-2.5</artifactId>
33             <type>xml</type>
34             <classifier>features</classifier>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.odlparent</groupId>
38             <artifactId>odl-akka-clustering-2.5</artifactId>
39             <type>xml</type>
40             <classifier>features</classifier>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.odlparent</groupId>
44             <artifactId>odl-apache-commons-lang3</artifactId>
45             <type>xml</type>
46             <classifier>features</classifier>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.odlparent</groupId>
50             <artifactId>odl-dropwizard-metrics</artifactId>
51             <type>xml</type>
52             <classifier>features</classifier>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.odlparent</groupId>
56             <artifactId>odl-servlet-api</artifactId>
57             <type>xml</type>
58             <classifier>features</classifier>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.yangtools</groupId>
62             <artifactId>odl-yangtools-data</artifactId>
63             <type>xml</type>
64             <classifier>features</classifier>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>odl-yangtools-codec</artifactId>
69             <type>xml</type>
70             <classifier>features</classifier>
71         </dependency>
72
73         <dependency>
74             <groupId>org.opendaylight.controller</groupId>
75             <artifactId>sal-clustering-commons</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.controller</groupId>
79             <artifactId>sal-akka-raft</artifactId>
80         </dependency>
81
82         <!-- Segmented Journal for Akka, including Kryo and asm-5.2 -->
83         <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>sal-akka-segmented-journal</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>com.esotericsoftware</groupId>
89             <artifactId>kryo</artifactId>
90             <version>4.0.2</version>
91         </dependency>
92         <dependency>
93             <groupId>com.esotericsoftware</groupId>
94             <artifactId>minlog</artifactId>
95             <version>1.3.1</version>
96         </dependency>
97         <dependency>
98             <groupId>com.esotericsoftware</groupId>
99             <artifactId>reflectasm</artifactId>
100             <version>1.11.8</version>
101         </dependency>
102         <dependency>
103             <groupId>org.ow2.asm</groupId>
104             <artifactId>asm</artifactId>
105             <version>5.2</version>
106         </dependency>
107     </dependencies>
108 </project>