b752b6d064df205333083139117afd743349a745
[tsdr.git] / features / odl-tsdr-hbase / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3     <modelVersion>4.0.0</modelVersion>
4
5     <parent>
6         <groupId>org.opendaylight.odlparent</groupId>
7         <artifactId>single-feature-parent</artifactId>
8         <version>4.0.9</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.tsdr</groupId>
13     <artifactId>odl-tsdr-hbase</artifactId>
14     <version>1.7.0-SNAPSHOT</version>
15     <packaging>feature</packaging>
16
17     <name>ODL :: tsdr :: hbase</name>
18
19     <properties>
20         <!-- For some reason SFT dies with a native memory allocation error -->
21         <skip.karaf.featureTest>true</skip.karaf.featureTest>
22     </properties>
23
24     <dependencyManagement>
25         <dependencies>
26             <dependency>
27                 <groupId>${project.groupId}</groupId>
28                 <artifactId>tsdr-artifacts</artifactId>
29                 <version>${project.version}</version>
30                 <type>pom</type>
31                 <scope>import</scope>
32             </dependency>
33         </dependencies>
34     </dependencyManagement>
35
36     <dependencies>
37         <!-- TSDR Dependencies -->
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>odl-tsdr-core</artifactId>
41             <version>${project.version}</version>
42             <type>xml</type>
43             <classifier>features</classifier>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>odl-hbaseclient</artifactId>
48             <version>${project.version}</version>
49             <type>xml</type>
50             <classifier>features</classifier>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.tsdr</groupId>
54             <artifactId>tsdr-persistence-hbase</artifactId>
55             <version>${project.version}</version>
56             <exclusions>
57                 <!-- This is provided by odl-hbaseclient -->
58                 <exclusion>
59                     <groupId>org.apache.hbase</groupId>
60                     <artifactId>hbase</artifactId>
61                 </exclusion>
62             </exclusions>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.tsdr</groupId>
66             <artifactId>tsdr-persistence-hbase</artifactId>
67             <version>${project.version}</version>
68             <type>xml</type>
69             <classifier>config</classifier>
70             <exclusions>
71                 <!-- This is provided by odl-hbaseclient -->
72                 <exclusion>
73                     <groupId>org.apache.hbase</groupId>
74                     <artifactId>hbase</artifactId>
75                 </exclusion>
76             </exclusions>
77         </dependency>
78 </dependencies>
79 </project>