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