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