c31d27e38af63da93c246ebb4e2c2244d40a47f4
[controller.git] / features / mdsal / 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
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>single-feature-parent</artifactId>
15         <version>6.0.4</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.controller</groupId>
20     <artifactId>odl-mdsal-broker-local</artifactId>
21     <version>1.12.0-SNAPSHOT</version>
22     <packaging>feature</packaging>
23
24     <name>OpenDaylight :: MDSAL :: Broker (local)</name>
25     <description>OpenDaylight Controller stack without clustering</description>
26
27     <properties>
28         <!-- FIXME: CONTROLLER-1584:
29             - mdsal-eos-dom-simple does not activate
30             - we need a DOMDataBroker instance activation
31             -->
32         <skip.karaf.featureTest>true</skip.karaf.featureTest>
33     </properties>
34
35     <dependencyManagement>
36         <dependencies>
37             <dependency>
38                 <groupId>org.opendaylight.yangtools</groupId>
39                 <artifactId>yangtools-artifacts</artifactId>
40                 <version>4.0.6</version>
41                 <type>pom</type>
42                 <scope>import</scope>
43             </dependency>
44             <dependency>
45                 <groupId>org.opendaylight.mdsal</groupId>
46                 <artifactId>mdsal-artifacts</artifactId>
47                 <version>5.0.9</version>
48                 <type>pom</type>
49                 <scope>import</scope>
50             </dependency>
51             <dependency>
52                 <groupId>org.opendaylight.controller</groupId>
53                 <artifactId>mdsal-artifacts</artifactId>
54                 <version>1.12.0-SNAPSHOT</version>
55                 <type>pom</type>
56                 <scope>import</scope>
57             </dependency>
58         </dependencies>
59     </dependencyManagement>
60
61     <dependencies>
62         <dependency>
63             <groupId>org.opendaylight.mdsal</groupId>
64             <artifactId>odl-mdsal-dom</artifactId>
65             <type>xml</type>
66             <classifier>features</classifier>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.mdsal</groupId>
70             <artifactId>odl-mdsal-eos-dom</artifactId>
71             <type>xml</type>
72             <classifier>features</classifier>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.mdsal</groupId>
76             <artifactId>odl-mdsal-eos-binding</artifactId>
77             <type>xml</type>
78             <classifier>features</classifier>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.mdsal</groupId>
82             <artifactId>odl-mdsal-singleton-dom</artifactId>
83             <type>xml</type>
84             <classifier>features</classifier>
85         </dependency>
86
87         <!-- Single-node Entity Ownership Service -->
88         <dependency>
89             <groupId>org.opendaylight.mdsal</groupId>
90             <artifactId>mdsal-eos-dom-simple</artifactId>
91         </dependency>
92
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>odl-config-netty</artifactId>
96             <version>0.13.0-SNAPSHOT</version>
97             <type>xml</type>
98             <classifier>features</classifier>
99         </dependency>
100
101         <dependency>
102             <groupId>${project.groupId}</groupId>
103             <artifactId>sal-broker-impl</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>${project.groupId}</groupId>
107             <artifactId>sal-binding-broker-impl</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>${project.groupId}</groupId>
111             <artifactId>sal-inmemory-datastore</artifactId>
112         </dependency>
113     </dependencies>
114
115 </project>