2012-02-16 22:02:06 +04:00
|
|
|
<?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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2012-02-21 06:34:27 +04:00
|
|
|
<groupId>com.yahoo.ycsb</groupId>
|
2012-02-16 22:02:06 +04:00
|
|
|
<artifactId>root</artifactId>
|
2012-02-21 06:34:27 +04:00
|
|
|
<version>0.1.4</version>
|
2012-02-16 22:02:06 +04:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>YCSB Root</name>
|
|
|
|
|
2012-02-17 14:40:30 +04:00
|
|
|
<description>
|
|
|
|
This is the top level project that builds, packages the core and all the DB bindings for YCSB infrastructure.
|
|
|
|
</description>
|
2012-02-19 10:28:56 +04:00
|
|
|
<dependencies>
|
|
|
|
<!-- voldemort -->
|
2012-02-22 15:34:37 +04:00
|
|
|
<dependency>
|
|
|
|
<groupId>checkstyle</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
|
|
|
<version>5.0</version>
|
|
|
|
</dependency>
|
2012-02-19 13:42:44 +04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jdom</groupId>
|
|
|
|
<artifactId>jdom</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</dependency>
|
2012-02-19 10:28:56 +04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.collections</groupId>
|
|
|
|
<artifactId>google-collections</artifactId>
|
|
|
|
<version>1.0</version>
|
2012-02-19 13:42:44 +04:00
|
|
|
</dependency>
|
2012-02-19 10:28:56 +04:00
|
|
|
<!--
|
|
|
|
Nail down slf4j version to 1.6 so that it defaults to no-op logger.
|
|
|
|
http://www.slf4j.org/codes.html#StaticLoggerBinder
|
|
|
|
-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.6.4</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2012-02-16 22:02:06 +04:00
|
|
|
<!-- Properties Management -->
|
|
|
|
<properties>
|
|
|
|
<maven.assembly.version>2.2.1</maven.assembly.version>
|
2012-06-19 08:36:06 +04:00
|
|
|
<hbase.version>0.92.1</hbase.version>
|
2014-02-05 21:13:46 +04:00
|
|
|
<accumulo.version>1.6.0</accumulo.version>
|
2012-02-17 16:42:14 +04:00
|
|
|
<cassandra.version>0.7.0</cassandra.version>
|
2012-02-16 22:02:06 +04:00
|
|
|
<infinispan.version>7.1.0.CR1</infinispan.version>
|
|
|
|
<openjpa.jdbc.version>2.1.1</openjpa.jdbc.version>
|
2012-02-17 15:03:21 +04:00
|
|
|
<mapkeeper.version>1.0</mapkeeper.version>
|
2013-07-27 04:03:23 +04:00
|
|
|
<mongodb.version>2.11.2</mongodb.version>
|
2012-08-15 00:52:16 +04:00
|
|
|
<orientdb.version>1.0.1</orientdb.version>
|
2012-02-16 22:02:06 +04:00
|
|
|
<redis.version>2.0.0</redis.version>
|
|
|
|
<voldemort.version>0.81</voldemort.version>
|
2012-02-19 05:07:33 +04:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2012-07-10 00:38:55 +04:00
|
|
|
<thrift.version>0.8.0</thrift.version>
|
|
|
|
<hypertable.version>0.9.5.6</hypertable.version>
|
2012-02-16 22:02:06 +04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
2012-02-22 23:20:11 +04:00
|
|
|
<!--module>build-tools</module-->
|
2012-08-25 04:17:15 +04:00
|
|
|
<module>cassandra</module>
|
2012-02-16 22:02:06 +04:00
|
|
|
<module>core</module>
|
|
|
|
<module>hbase</module>
|
2012-07-10 00:38:55 +04:00
|
|
|
<module>hypertable</module>
|
2013-07-20 10:45:36 +04:00
|
|
|
<module>accumulo</module>
|
2012-08-03 06:09:30 +04:00
|
|
|
<module>dynamodb</module>
|
2012-08-25 04:17:15 +04:00
|
|
|
<module>elasticsearch</module>
|
2012-08-05 11:17:17 +04:00
|
|
|
<!--<module>gemfire</module>-->
|
2012-02-16 22:02:06 +04:00
|
|
|
<module>infinispan</module>
|
|
|
|
<module>jdbc</module>
|
2012-02-17 15:03:21 +04:00
|
|
|
<module>mapkeeper</module>
|
2012-02-16 22:02:06 +04:00
|
|
|
<module>mongodb</module>
|
2012-05-11 02:59:49 +04:00
|
|
|
<module>orientdb</module>
|
2012-02-20 06:16:22 +04:00
|
|
|
<!--module>nosqldb</module-->
|
2012-02-16 22:02:06 +04:00
|
|
|
<module>redis</module>
|
|
|
|
<module>voldemort</module>
|
|
|
|
<module>distribution</module>
|
|
|
|
</modules>
|
|
|
|
|
2012-02-17 14:40:30 +04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2012-02-22 15:34:37 +04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<configuration>
|
|
|
|
<consoleOutput>true</consoleOutput>
|
2012-02-27 12:33:46 +04:00
|
|
|
<configLocation>checkstyle.xml</configLocation>
|
2012-02-22 15:34:37 +04:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>validate</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>checkstyle</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2012-02-17 14:40:30 +04:00
|
|
|
</build>
|
2012-02-16 22:02:06 +04:00
|
|
|
</project>
|