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