|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +Copyright (c) 2012 - 2015 YCSB contributors. All rights reserved. |
| 4 | +
|
| 5 | +Licensed under the Apache License, Version 2.0 (the "License"); you |
| 6 | +may not use this file except in compliance with the License. You |
| 7 | +may obtain a copy of the License at |
| 8 | +
|
| 9 | +http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +
|
| 11 | +Unless required by applicable law or agreed to in writing, software |
| 12 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 14 | +implied. See the License for the specific language governing |
| 15 | +permissions and limitations under the License. See accompanying |
| 16 | +LICENSE file. |
| 17 | +--> |
| 18 | + |
| 19 | +<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/maven-v4_0_0.xsd"> |
| 20 | + <modelVersion>4.0.0</modelVersion> |
| 21 | + <parent> |
| 22 | + <groupId>com.yahoo.ycsb</groupId> |
| 23 | + <artifactId>binding-parent</artifactId> |
| 24 | + <version>0.4.0-SNAPSHOT</version> |
| 25 | + <relativePath>../binding-parent/</relativePath> |
| 26 | + </parent> |
| 27 | + |
| 28 | + <artifactId>hbase094-binding</artifactId> |
| 29 | + <name>HBase 0.94.x DB Binding</name> |
| 30 | + |
| 31 | + <dependencies> |
| 32 | + <!-- This binding is identical to the HBase 0.98, other than dependencies. --> |
| 33 | + <dependency> |
| 34 | + <groupId>org.apache.hbase</groupId> |
| 35 | + <artifactId>hbase</artifactId> |
| 36 | + <version>${hbase094.version}</version> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>org.apache.hadoop</groupId> |
| 40 | + <artifactId>hadoop-core</artifactId> |
| 41 | + <version>1.0.4</version> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>com.yahoo.ycsb</groupId> |
| 45 | + <artifactId>hbase098-binding</artifactId> |
| 46 | + <version>${project.version}</version> |
| 47 | + <exclusions> |
| 48 | + <!-- HBase 0.98.0 depends on hbase-client, HBase 0.94.0 on hbase. |
| 49 | + Override all dependencies. --> |
| 50 | + <exclusion> |
| 51 | + <groupId>*</groupId> |
| 52 | + <artifactId>*</artifactId> |
| 53 | + </exclusion> |
| 54 | + </exclusions> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>org.slf4j</groupId> |
| 58 | + <artifactId>slf4j-simple</artifactId> |
| 59 | + <version>1.7.12</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>com.yahoo.ycsb</groupId> |
| 63 | + <artifactId>core</artifactId> |
| 64 | + <version>${project.version}</version> |
| 65 | + <scope>provided</scope> |
| 66 | + </dependency> |
| 67 | + </dependencies> |
| 68 | +</project> |
0 commit comments