Add Karaf 4 features
[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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <artifactId>single-feature-parent</artifactId>
17         <version>1.8.0-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.controller</groupId>
22     <artifactId>odl-mdsal-broker</artifactId>
23     <version>1.5.0-SNAPSHOT</version>
24     <packaging>feature</packaging>
25
26     <properties>
27         <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
28         <config.clustering.configfile>05-clustering.xml</config.clustering.configfile>
29         <config.clustered-entity-ownership.configfile>06-clustered-entity-ownership.xml</config.clustered-entity-ownership.configfile>
30     </properties>
31
32     <dependencies>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>odl-mdsal-remoterpc-connector</artifactId>
36             <version>${project.version}</version>
37             <type>xml</type>
38             <classifier>features</classifier>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>odl-mdsal-distributed-datastore</artifactId>
43             <version>${project.version}</version>
44             <type>xml</type>
45             <classifier>features</classifier>
46         </dependency>
47         <dependency>
48             <!-- finalname="${config.configfile.directory}/${config.clustering.configfile}" override="true" -->
49             <groupId>${project.groupId}</groupId>
50             <artifactId>sal-clustering-config</artifactId>
51             <version>${project.version}</version>
52             <type>xml</type>
53             <classifier>config</classifier>
54             <scope>provided</scope>
55         </dependency>
56         <dependency>
57             <!-- finalname="${config.configfile.directory}/${config.clustered-entity-ownership.configfile}" -->
58             <groupId>${project.groupId}</groupId>
59             <artifactId>sal-clustering-config</artifactId>
60             <version>${project.version}</version>
61             <type>xml</type>
62             <classifier>entityownershipconfig</classifier>
63             <scope>provided</scope>
64         </dependency>
65         <dependency>
66             <!-- finalname="configuration/initial/akka.conf" -->
67             <groupId>${project.groupId}</groupId>
68             <artifactId>sal-clustering-config</artifactId>
69             <version>${project.version}</version>
70             <type>xml</type>
71             <classifier>akkaconf</classifier>
72             <scope>provided</scope>
73         </dependency>
74         <dependency>
75             <!-- finalname="configuration/factory/akka.conf" override="true" -->
76             <groupId>${project.groupId}</groupId>
77             <artifactId>sal-clustering-config</artifactId>
78             <version>${project.version}</version>
79             <type>xml</type>
80             <classifier>factoryakkaconf</classifier>
81             <scope>provided</scope>
82         </dependency>
83         <dependency>
84             <!-- finalname="configuration/initial/module-shards.conf" -->
85             <groupId>${project.groupId}</groupId>
86             <artifactId>sal-clustering-config</artifactId>
87             <version>${project.version}</version>
88             <type>xml</type>
89             <classifier>moduleshardconf</classifier>
90             <scope>provided</scope>
91         </dependency>
92         <dependency>
93             <!-- finalname="configuration/initial/modules.conf" -->
94             <groupId>${project.groupId}</groupId>
95             <artifactId>sal-clustering-config</artifactId>
96             <version>${project.version}</version>
97             <type>xml</type>
98             <classifier>moduleconf</classifier>
99             <scope>provided</scope>
100         </dependency>
101         <dependency>
102             <!-- finalname="etc/org.opendaylight.controller.cluster.datastore.cfg" -->
103             <groupId>${project.groupId}</groupId>
104             <artifactId>sal-clustering-config</artifactId>
105             <version>${project.version}</version>
106             <type>cfg</type>
107             <classifier>datastore</classifier>
108             <scope>provided</scope>
109         </dependency>
110     </dependencies>
111 </project>