adf146e361501aa69dc419515dd6f66d2261d905
[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
12     <parent>
13         <groupId>org.opendaylight.controller</groupId>
14         <artifactId>single-feature-parent</artifactId>
15         <version>1.12.0-SNAPSHOT</version>
16         <relativePath>../single-feature-parent</relativePath>
17     </parent>
18
19     <groupId>org.opendaylight.controller</groupId>
20     <artifactId>odl-mdsal-clustering-commons</artifactId>
21     <version>1.12.0-SNAPSHOT</version>
22     <packaging>feature</packaging>
23
24     <name>OpenDaylight :: Controller :: Clustering Commons</name>
25     <description>Common Clustering utilities</description>
26
27     <dependencies>
28         <dependency>
29             <groupId>org.opendaylight.odlparent</groupId>
30             <artifactId>odl-akka-system-2.5</artifactId>
31             <type>xml</type>
32             <classifier>features</classifier>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.odlparent</groupId>
36             <artifactId>odl-akka-persistence-2.5</artifactId>
37             <type>xml</type>
38             <classifier>features</classifier>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.odlparent</groupId>
42             <artifactId>odl-akka-clustering-2.5</artifactId>
43             <type>xml</type>
44             <classifier>features</classifier>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.odlparent</groupId>
48             <artifactId>odl-apache-commons-lang3</artifactId>
49             <type>xml</type>
50             <classifier>features</classifier>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.odlparent</groupId>
54             <artifactId>odl-dropwizard-metrics</artifactId>
55             <type>xml</type>
56             <classifier>features</classifier>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.odlparent</groupId>
60             <artifactId>odl-servlet-api</artifactId>
61             <type>xml</type>
62             <classifier>features</classifier>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.yangtools</groupId>
66             <artifactId>odl-yangtools-data</artifactId>
67             <type>xml</type>
68             <classifier>features</classifier>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.yangtools</groupId>
72             <artifactId>odl-yangtools-codec</artifactId>
73             <type>xml</type>
74             <classifier>features</classifier>
75         </dependency>
76
77         <dependency>
78             <groupId>org.opendaylight.controller</groupId>
79             <artifactId>sal-clustering-commons</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.controller</groupId>
83             <artifactId>sal-akka-raft</artifactId>
84         </dependency>
85
86         <!-- Segmented Journal for Akka, including Kryo and asm-5.2 -->
87         <dependency>
88             <groupId>org.opendaylight.controller</groupId>
89             <artifactId>sal-akka-segmented-journal</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>com.esotericsoftware</groupId>
93             <artifactId>kryo</artifactId>
94             <version>4.0.2</version>
95         </dependency>
96         <dependency>
97             <groupId>com.esotericsoftware</groupId>
98             <artifactId>minlog</artifactId>
99             <version>1.3.1</version>
100         </dependency>
101         <dependency>
102             <groupId>com.esotericsoftware</groupId>
103             <artifactId>reflectasm</artifactId>
104             <version>1.11.8</version>
105         </dependency>
106         <dependency>
107             <groupId>org.ow2.asm</groupId>
108             <artifactId>asm</artifactId>
109             <version>5.2</version>
110         </dependency>
111     </dependencies>
112
113 </project>