Guest User

ycsb redis binding

a guest
Aug 31st, 2012
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.54 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3.   <modelVersion>4.0.0</modelVersion>
  4.   <parent>
  5.     <groupId>com.yahoo.ycsb</groupId>
  6.     <artifactId>root</artifactId>
  7.     <version>0.1.4</version>
  8.   </parent>
  9.  
  10.   <artifactId>redis-binding</artifactId>
  11.   <name>Redis DB Binding</name>
  12.   <packaging>jar</packaging>
  13.  
  14.   <dependencies>
  15.     <dependency>
  16.       <groupId>redis.clients</groupId>
  17.       <artifactId>jedis</artifactId>
  18.       <version>${redis.version}</version>
  19.     </dependency>
  20.     <dependency>
  21.       <groupId>com.yahoo.ycsb</groupId>
  22.       <artifactId>core</artifactId>
  23.       <version>${project.version}</version>
  24.     </dependency>
  25.   </dependencies>
  26.  
  27.  <build>
  28.     <plugins>
  29.      <plugin>
  30.         <groupId>org.apache.maven.plugins</groupId>
  31.         <artifactId>maven-assembly-plugin</artifactId>
  32.         <version>${maven.assembly.version}</version>
  33.         <configuration>
  34.           <descriptorRefs>
  35.             <descriptorRef>jar-with-dependencies</descriptorRef>
  36.           </descriptorRefs>
  37.           <appendAssemblyId>false</appendAssemblyId>
  38.         </configuration>
  39.         <executions>
  40.           <execution>
  41.             <phase>package</phase>
  42.             <goals>
  43.               <goal>single</goal>
  44.             </goals>
  45.           </execution>
  46.         </executions>
  47.       </plugin>
  48.     </plugins>
  49.   </build>
  50.  
  51.    
  52. </project>
Advertisement
Add Comment
Please, Sign In to add comment