Update feature version declarations
[controller.git] / features / odl-mdsal-broker-local / 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-broker-local</artifactId>
20     <packaging>feature</packaging>
21
22     <name>OpenDaylight :: MDSAL :: Broker (local)</name>
23     <description>OpenDaylight Controller stack without clustering</description>
24
25     <properties>
26         <!-- FIXME: CONTROLLER-1584:
27             - mdsal-eos-dom-simple does not activate
28             - we need a DOMDataBroker instance activation
29             -->
30         <skip.karaf.featureTest>true</skip.karaf.featureTest>
31     </properties>
32
33     <dependencies>
34         <dependency>
35             <groupId>org.opendaylight.mdsal</groupId>
36             <artifactId>odl-mdsal-dom</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-eos-binding</artifactId>
49             <type>xml</type>
50             <classifier>features</classifier>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>odl-mdsal-singleton-dom</artifactId>
55             <type>xml</type>
56             <classifier>features</classifier>
57         </dependency>
58
59         <!-- Single-node Entity Ownership Service -->
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>mdsal-eos-dom-simple</artifactId>
63         </dependency>
64
65         <dependency>
66             <groupId>org.opendaylight.mdsal</groupId>
67             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
68         </dependency>
69     </dependencies>
70 </project>