Guest User

pom file of jedis

a guest
Aug 26th, 2012
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.29 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3.  
  4.     <repositories>
  5.         <repository>
  6.             <id>dsprepo</id>
  7.             <url>http://localhost:8081/nexus/content/repositories/dsprepo</url>
  8.         </repository>
  9.     </repositories>
  10.  
  11.  
  12.     <parent>
  13.         <groupId>org.sonatype.oss</groupId>
  14.         <artifactId>oss-parent</artifactId>
  15.         <version>7</version>
  16.     </parent>
  17.  
  18.     <modelVersion>4.0.0</modelVersion>
  19.     <packaging>jar</packaging>
  20.     <groupId>redis.clients</groupId>
  21.     <artifactId>jedis</artifactId>
  22.     <version>2.2.0-SNAPSHOT</version>
  23.     <name>Jedis</name>
  24.     <description>Jedis is a blazingly small and sane Redis java client.</description>
  25.     <url>http://code.google.com/p/jedis/</url>
  26.  
  27.     <mailingLists>
  28.         <mailingList>
  29.             <name>Jedis Mailing List</name>
  30.             <post>[email protected]</post>
  31.             <archive>
  32.                 http://groups.google.com/group/jedis_redis
  33.             </archive>
  34.         </mailingList>
  35.     </mailingLists>
  36.  
  37.     <licenses>
  38.         <license>
  39.             <name>Jedis License</name>
  40.             <url>http://github.com/xetorthio/jedis/raw/master/LICENSE.txt</url>
  41.             <distribution>repo</distribution>
  42.         </license>
  43.     </licenses>
  44.  
  45.     <issueManagement>
  46.         <system>github</system>
  47.         <url>http://github.com/xetorthio/jedis/issues</url>
  48.     </issueManagement>
  49.  
  50.     <scm>
  51.         <connection>scm:git:[email protected]:xetorthio/jedis.git</connection>
  52.         <url>scm:git:[email protected]:xetorthio/jedis.git</url>
  53.         <developerConnection>scm:git:[email protected]:xetorthio/jedis.git</developerConnection>
  54.     </scm>
  55.  
  56.     <properties>
  57.         <redis-hosts>localhost:6379,localhost:6380</redis-hosts>
  58.     </properties>
  59.  
  60.     <dependencies>
  61.         <dependency>
  62.             <groupId>junit</groupId>
  63.             <artifactId>junit</artifactId>
  64.             <version>4.8.1</version>
  65.             <type>jar</type>
  66.             <scope>test</scope>
  67.         </dependency>
  68.         <dependency>
  69.             <groupId>commons-pool</groupId>
  70.             <artifactId>commons-pool</artifactId>
  71.             <version>1.5.5</version>
  72.             <type>jar</type>
  73.             <scope>compile</scope>
  74.         </dependency>
  75.     </dependencies>
  76.  
  77.     <build>
  78.         <plugins>
  79.             <plugin>
  80.                 <groupId>org.apache.maven.plugins</groupId>
  81.                 <artifactId>maven-compiler-plugin</artifactId>
  82.                 <version>2.0.2</version>
  83.                 <configuration>
  84.                     <source>1.5</source>
  85.                     <target>1.5</target>
  86.                 </configuration>
  87.             </plugin>
  88.             <plugin>
  89.                 <groupId>org.apache.maven.plugins</groupId>
  90.                 <artifactId>maven-surefire-plugin</artifactId>
  91.                 <version>2.6</version>
  92.                 <configuration>
  93.                     <systemPropertyVariables>
  94.                         <redis-hosts>${redis-hosts}</redis-hosts>
  95.                     </systemPropertyVariables>
  96.                 </configuration>
  97.             </plugin>
  98.             <plugin>
  99.                 <groupId>org.apache.maven.plugins</groupId>
  100.                 <artifactId>maven-source-plugin</artifactId>
  101.                 <version>2.1.2</version>
  102.                 <configuration>
  103.                     <attach>true</attach>
  104.                 </configuration>
  105.             </plugin>
  106.             <plugin>
  107.                 <groupId>org.apache.maven.plugins</groupId>
  108.                 <artifactId>maven-javadoc-plugin</artifactId>
  109.                 <version>2.7</version>
  110.                 <configuration>
  111.                     <aggregate>true</aggregate>
  112.                 </configuration>
  113.             </plugin>
  114.             <plugin>
  115.                 <groupId>org.apache.maven.plugins</groupId>
  116.                 <artifactId>maven-release-plugin</artifactId>
  117.                 <version>2.0-beta-9</version>
  118.             </plugin>
  119.         </plugins>
  120.     </build>
  121. </project>
Advertisement
Add Comment
Please, Sign In to add comment