d6be56220e0d186c9c979be9374b16481c409567
[controller.git] / features / mdsal / odl-mdsal-broker / 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>3.1.0</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.controller</groupId>
20     <artifactId>odl-mdsal-broker</artifactId>
21     <version>1.8.0-SNAPSHOT</version>
22     <packaging>feature</packaging>
23
24     <properties>
25         <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
26         <config.clustering.configfile>05-clustering.xml</config.clustering.configfile>
27         <config.clustered-entity-ownership.configfile>06-clustered-entity-ownership.xml</config.clustered-entity-ownership.configfile>
28     </properties>
29
30     <dependencies>
31         <dependency>
32             <groupId>${project.groupId}</groupId>
33             <artifactId>odl-mdsal-remoterpc-connector</artifactId>
34             <version>${project.version}</version>
35             <type>xml</type>
36             <classifier>features</classifier>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>odl-mdsal-distributed-datastore</artifactId>
41             <version>${project.version}</version>
42             <type>xml</type>
43             <classifier>features</classifier>
44         </dependency>
45         <dependency>
46             <!-- finalname="${config.configfile.directory}/${config.clustering.configfile}" override="true" -->
47             <groupId>${project.groupId}</groupId>
48             <artifactId>sal-clustering-config</artifactId>
49             <version>${project.version}</version>
50             <type>xml</type>
51             <classifier>config</classifier>
52         </dependency>
53         <dependency>
54             <!-- finalname="${config.configfile.directory}/${config.clustered-entity-ownership.configfile}" -->
55             <groupId>${project.groupId}</groupId>
56             <artifactId>sal-clustering-config</artifactId>
57             <version>${project.version}</version>
58             <type>xml</type>
59             <classifier>entityownershipconfig</classifier>
60         </dependency>
61         <dependency>
62             <!-- finalname="configuration/initial/akka.conf" -->
63             <groupId>${project.groupId}</groupId>
64             <artifactId>sal-clustering-config</artifactId>
65             <version>${project.version}</version>
66             <type>xml</type>
67             <classifier>akkaconf</classifier>
68         </dependency>
69         <dependency>
70             <!-- finalname="configuration/factory/akka.conf" override="true" -->
71             <groupId>${project.groupId}</groupId>
72             <artifactId>sal-clustering-config</artifactId>
73             <version>${project.version}</version>
74             <type>xml</type>
75             <classifier>factoryakkaconf</classifier>
76         </dependency>
77         <dependency>
78             <!-- finalname="configuration/initial/module-shards.conf" -->
79             <groupId>${project.groupId}</groupId>
80             <artifactId>sal-clustering-config</artifactId>
81             <version>${project.version}</version>
82             <type>xml</type>
83             <classifier>moduleshardconf</classifier>
84         </dependency>
85         <dependency>
86             <!-- finalname="configuration/initial/modules.conf" -->
87             <groupId>${project.groupId}</groupId>
88             <artifactId>sal-clustering-config</artifactId>
89             <version>${project.version}</version>
90             <type>xml</type>
91             <classifier>moduleconf</classifier>
92         </dependency>
93         <dependency>
94             <!-- finalname="etc/org.opendaylight.controller.cluster.datastore.cfg" -->
95             <groupId>${project.groupId}</groupId>
96             <artifactId>sal-clustering-config</artifactId>
97             <version>${project.version}</version>
98             <type>cfg</type>
99             <classifier>datastore</classifier>
100         </dependency>
101     </dependencies>
102 </project>