Guest User

ycsb redis binding main

a guest
Aug 31st, 2012
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.83 KB | None | 0 0
  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"
  3.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.  
  5.     <repositories>
  6.        
  7.         <repository>
  8.             <id>dsprepo</id>
  9.             <url>http://localhost:8081/nexus/content/repositories/dsprepo</url>
  10.         </repository>
  11.        
  12.         <repository>
  13.             <id>dspsnapshotrepo</id>
  14.             <url>http://localhost:8081/nexus/content/repositories/dspsnapshotrepo</url>
  15.         </repository>
  16.     </repositories>
  17.  
  18.  
  19.     <modelVersion>4.0.0</modelVersion>
  20.  
  21.     <groupId>com.yahoo.ycsb</groupId>
  22.     <artifactId>root</artifactId>
  23.     <version>0.1.4</version>
  24.     <packaging>pom</packaging>
  25.  
  26.     <name>YCSB Root</name>
  27.  
  28.  
  29.  
  30.  
  31.     <description>
  32.     This is the top level project that builds, packages the core and all the DB bindings for YCSB infrastructure.
  33.   </description>
  34.     <dependencies>
  35.         <!-- voldemort -->
  36.         <dependency>
  37.             <groupId>checkstyle</groupId>
  38.             <artifactId>checkstyle</artifactId>
  39.             <version>5.0</version>
  40.         </dependency>
  41.         <dependency>
  42.             <groupId>org.jdom</groupId>
  43.             <artifactId>jdom</artifactId>
  44.             <version>1.1</version>
  45.         </dependency>
  46.         <dependency>
  47.             <groupId>com.google.collections</groupId>
  48.             <artifactId>google-collections</artifactId>
  49.             <version>1.0</version>
  50.         </dependency>
  51.         <!-- Nail down slf4j version to 1.6 so that it defaults to no-op logger.
  52.             http://www.slf4j.org/codes.html#StaticLoggerBinder -->
  53.         <dependency>
  54.             <groupId>org.slf4j</groupId>
  55.             <artifactId>slf4j-api</artifactId>
  56.             <version>1.6.4</version>
  57.         </dependency>
  58.     </dependencies>
  59.  
  60.     <!-- Properties Management -->
  61.     <properties>
  62.         <maven.assembly.version>2.2.1</maven.assembly.version>
  63.         <hbase.version>0.92.1</hbase.version>
  64.         <cassandra.version>0.7.0</cassandra.version>
  65.         <infinispan.version>7.1.0.CR1</infinispan.version>
  66.         <openjpa.jdbc.version>2.1.1</openjpa.jdbc.version>
  67.         <mapkeeper.version>1.0</mapkeeper.version>
  68.         <mongodb.version>2.8.0</mongodb.version>
  69.         <orientdb.version>1.0.1</orientdb.version>
  70.         <!--
  71.         <redis.version>2.0.0</redis.version>
  72.         -->
  73.         <redis.version>2.2.0-SNAPSHOT</redis.version>
  74.         <voldemort.version>0.81</voldemort.version>
  75.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  76.         <thrift.version>0.8.0</thrift.version>
  77.         <hypertable.version>0.9.5.6</hypertable.version>
  78.         <!--
  79.         <socksProxyHost>192.168.8.159</socksProxyHost>
  80.         <socksProxyPort>2080</socksProxyPort>
  81.          -->
  82.     </properties>
  83.  
  84.     <modules>
  85.         <!--module>build-tools</module -->
  86.         <module>core</module>
  87.         <module>hbase</module>
  88.         <module>hypertable</module>
  89.         <module>cassandra</module>
  90.         <module>dynamodb</module>
  91.         <!--<module>gemfire</module> -->
  92.         <module>infinispan</module>
  93.         <module>jdbc</module>
  94.         <module>mapkeeper</module>
  95.         <module>mongodb</module>
  96.         <module>orientdb</module>
  97.         <!--module>nosqldb</module -->
  98.         <module>redis</module>
  99.         <module>voldemort</module>
  100.         <module>distribution</module>
  101.         <module>redismongodb-raw</module>
  102.         <module>redismongodb-bridged</module>
  103.     </modules>
  104.  
  105.     <build>
  106.         <plugins>
  107.             <plugin>
  108.                 <groupId>org.apache.maven.plugins</groupId>
  109.                 <artifactId>maven-compiler-plugin</artifactId>
  110.                 <version>2.3.2</version>
  111.                 <configuration>
  112.                     <source>1.6</source>
  113.                     <target>1.6</target>
  114.                 </configuration>
  115.             </plugin>
  116.             <plugin>
  117.                 <groupId>org.apache.maven.plugins</groupId>
  118.                 <artifactId>maven-checkstyle-plugin</artifactId>
  119.                 <version>2.6</version>
  120.                 <configuration>
  121.                     <consoleOutput>true</consoleOutput>
  122.                     <configLocation>checkstyle.xml</configLocation>
  123.                 </configuration>
  124.                 <executions>
  125.                     <execution>
  126.                         <id>validate</id>
  127.                         <phase>validate</phase>
  128.                         <goals>
  129.                             <goal>checkstyle</goal>
  130.                         </goals>
  131.                     </execution>
  132.                 </executions>
  133.             </plugin>
  134.         </plugins>
  135.     </build>
  136. </project>
Advertisement
Add Comment
Please, Sign In to add comment