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>
|
|
|
|
|
|
|
|
<groupId>org.apache.ycsb</groupId>
|
|
|
|
<artifactId>root</artifactId>
|
|
|
|
<version>0.1.3</version>
|
|
|
|
<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-16 22:02:06 +04:00
|
|
|
<!-- Properties Management -->
|
|
|
|
<properties>
|
|
|
|
<maven.assembly.version>2.2.1</maven.assembly.version>
|
|
|
|
<hbase.version>0.90.5</hbase.version>
|
2012-02-17 16:42:14 +04:00
|
|
|
<cassandra.version>0.7.0</cassandra.version>
|
2012-02-16 22:02:06 +04:00
|
|
|
<gemfire.version>1.0.0.M3</gemfire.version>
|
|
|
|
<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>
|
2012-02-16 22:02:06 +04:00
|
|
|
<mongodb.version>2.7.2</mongodb.version>
|
|
|
|
<redis.version>2.0.0</redis.version>
|
|
|
|
<voldemort.version>0.81</voldemort.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>core</module>
|
|
|
|
<module>hbase</module>
|
|
|
|
<module>cassandra</module>
|
|
|
|
<!--module>gemfire</module-->
|
|
|
|
<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>
|
|
|
|
<module>redis</module>
|
|
|
|
<module>voldemort</module>
|
|
|
|
<module>distribution</module>
|
|
|
|
</modules>
|
|
|
|
|
2012-02-17 14:40:30 +04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<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>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-02-16 22:02:06 +04:00
|
|
|
|
|
|
|
</project>
|