Created
March 8, 2015 22:04
YCSB cdh 5.3.2 hbase pom.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<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"> | |
<modelVersion>4.0.0</modelVersion> | |
<parent> | |
<groupId>com.yahoo.ycsb</groupId> | |
<artifactId>root</artifactId> | |
<version>0.1.4</version> | |
</parent> | |
<artifactId>hbase-binding</artifactId> | |
<name>HBase DB Binding</name> | |
<repositories> | |
<repository> | |
<id>central</id> | |
<name>Maven Repository Switchboard</name> | |
<url>http://repo1.maven.org/maven2</url> | |
</repository> | |
<repository> | |
<id>maven-hadoop</id> | |
<name>Hadoop Releases</name> | |
<url>https://repository.cloudera.com/content/repositories/releases/</url> | |
</repository> | |
<repository> | |
<id>cloudera-repos</id> | |
<name>Cloudera Repos</name> | |
<url>https://repository.cloudera.com/artifactory/cloudera-repos/</url> | |
</repository> | |
</repositories> | |
<dependencies> | |
<dependency> | |
<groupId>org.apache.hbase</groupId> | |
<artifactId>hbase-client</artifactId> | |
<version>0.98.6-cdh5.3.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.hadoop</groupId> | |
<artifactId>hadoop-hdfs</artifactId> | |
<version>2.5.0-cdh5.3.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.yahoo.ycsb</groupId> | |
<artifactId>core</artifactId> | |
<version>${project.version}</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-assembly-plugin</artifactId> | |
<version>${maven.assembly.version}</version> | |
<configuration> | |
<descriptorRefs> | |
<descriptorRef>jar-with-dependencies</descriptorRef> | |
</descriptorRefs> | |
<appendAssemblyId>false</appendAssemblyId> | |
</configuration> | |
<executions> | |
<execution> | |
<phase>package</phase> | |
<goals> | |
<goal>single</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment