229a1ce77d2332a9493e51bc6db80ad390d6a3ee
[controller.git] / features / odl-mdsal-distributed-datastore / 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>4.0.2-SNAPSHOT</version>
15         <relativePath>../single-feature-parent</relativePath>
16     </parent>
17
18     <artifactId>odl-mdsal-distributed-datastore</artifactId>
19     <packaging>feature</packaging>
20     <name>OpenDaylight :: Controller :: Clustered Datastore</name>
21     <description>Controller Clustered Datastore (akka-based)</description>
22
23     <dependencies>
24         <dependency>
25             <groupId>org.opendaylight.odlparent</groupId>
26             <artifactId>odl-apache-commons-text</artifactId>
27             <type>xml</type>
28             <classifier>features</classifier>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.yangtools</groupId>
32             <artifactId>odl-yangtools-codec</artifactId>
33             <type>xml</type>
34             <classifier>features</classifier>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.mdsal</groupId>
38             <artifactId>odl-mdsal-eos-dom</artifactId>
39             <type>xml</type>
40             <classifier>features</classifier>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.mdsal</groupId>
44             <artifactId>odl-mdsal-dom-broker</artifactId>
45             <type>xml</type>
46             <classifier>features</classifier>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal</groupId>
50             <artifactId>odl-mdsal-binding-dom-adapter</artifactId>
51             <type>xml</type>
52             <classifier>features</classifier>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>odl-mdsal-clustering-commons</artifactId>
57             <type>xml</type>
58             <classifier>features</classifier>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.controller</groupId>
62             <artifactId>odl-controller-blueprint</artifactId>
63             <type>xml</type>
64             <classifier>features</classifier>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.controller</groupId>
68             <artifactId>odl-controller-mdsal-common</artifactId>
69             <type>xml</type>
70             <classifier>features</classifier>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.controller</groupId>
74             <artifactId>cds-access-api</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.controller</groupId>
78             <artifactId>cds-access-client</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.controller</groupId>
82             <artifactId>cds-dom-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.controller</groupId>
86             <artifactId>sal-distributed-datastore</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.controller</groupId>
90             <artifactId>eos-dom-akka</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.controller</groupId>
94             <artifactId>sal-cluster-admin-api</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.controller</groupId>
98             <artifactId>sal-cluster-admin-impl</artifactId>
99         </dependency>
100
101         <dependency>
102             <!-- finalname="configuration/initial/akka.conf" -->
103             <groupId>org.opendaylight.controller</groupId>
104             <artifactId>sal-clustering-config</artifactId>
105             <type>xml</type>
106             <classifier>akkaconf</classifier>
107         </dependency>
108         <dependency>
109             <!-- finalname="configuration/factory/akka.conf" override="true" -->
110             <groupId>org.opendaylight.controller</groupId>
111             <artifactId>sal-clustering-config</artifactId>
112             <type>xml</type>
113             <classifier>factoryakkaconf</classifier>
114         </dependency>
115         <dependency>
116             <!-- finalname="configuration/initial/module-shards.conf" -->
117             <groupId>org.opendaylight.controller</groupId>
118             <artifactId>sal-clustering-config</artifactId>
119             <type>xml</type>
120             <classifier>moduleshardconf</classifier>
121         </dependency>
122         <dependency>
123             <!-- finalname="configuration/initial/modules.conf" -->
124             <groupId>org.opendaylight.controller</groupId>
125             <artifactId>sal-clustering-config</artifactId>
126             <type>xml</type>
127             <classifier>moduleconf</classifier>
128         </dependency>
129         <dependency>
130             <!-- finalname="etc/org.opendaylight.controller.cluster.datastore.cfg" -->
131             <groupId>org.opendaylight.controller</groupId>
132             <artifactId>sal-clustering-config</artifactId>
133             <type>cfg</type>
134             <classifier>datastore</classifier>
135         </dependency>
136     </dependencies>
137 </project>