jedis-2.5.2.pom 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <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">
  2. <parent>
  3. <groupId>org.sonatype.oss</groupId>
  4. <artifactId>oss-parent</artifactId>
  5. <version>7</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <packaging>jar</packaging>
  9. <groupId>redis.clients</groupId>
  10. <artifactId>jedis</artifactId>
  11. <version>2.5.2</version>
  12. <name>Jedis</name>
  13. <description>Jedis is a blazingly small and sane Redis java client.</description>
  14. <url>https://github.com/xetorthio/jedis</url>
  15. <mailingLists>
  16. <mailingList>
  17. <name>Jedis Mailing List</name>
  18. <post>jedis_redis@googlegroups.com</post>
  19. <archive>
  20. http://groups.google.com/group/jedis_redis
  21. </archive>
  22. </mailingList>
  23. </mailingLists>
  24. <licenses>
  25. <license>
  26. <name>MIT</name>
  27. <url>http://github.com/xetorthio/jedis/raw/master/LICENSE.txt</url>
  28. <distribution>repo</distribution>
  29. </license>
  30. </licenses>
  31. <issueManagement>
  32. <system>github</system>
  33. <url>http://github.com/xetorthio/jedis/issues</url>
  34. </issueManagement>
  35. <scm>
  36. <connection>scm:git:git@github.com:xetorthio/jedis.git</connection>
  37. <url>scm:git:git@github.com:xetorthio/jedis.git</url>
  38. <developerConnection>scm:git:git@github.com:xetorthio/jedis.git</developerConnection>
  39. <tag>jedis-2.5.2</tag>
  40. </scm>
  41. <properties>
  42. <redis-hosts>localhost:6379,localhost:6380,localhost:6381,localhost:6382,localhost:6383,localhost:6384,localhost:6385</redis-hosts>
  43. <sentinel-hosts>localhost:26379,localhost:26380,localhost:26381</sentinel-hosts>
  44. <cluster-hosts>localhost:7379,localhost:7380,localhost:7381,localhost:7382,localhost:7383,localhost:7384,localhost:7385</cluster-hosts>
  45. <github.global.server>github</github.global.server>
  46. </properties>
  47. <dependencies>
  48. <dependency>
  49. <groupId>junit</groupId>
  50. <artifactId>junit</artifactId>
  51. <version>4.11</version>
  52. <type>jar</type>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.commons</groupId>
  57. <artifactId>commons-pool2</artifactId>
  58. <version>2.0</version>
  59. <type>jar</type>
  60. <scope>compile</scope>
  61. </dependency>
  62. </dependencies>
  63. <distributionManagement>
  64. <repository>
  65. <id>github</id>
  66. <name>GitHub ${project.artifactId} Repository</name>
  67. <url>https://raw.github.com/xetorthio/${project.artifactId}/mvn-repo</url>
  68. </repository>
  69. </distributionManagement>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-compiler-plugin</artifactId>
  75. <version>3.1</version>
  76. <configuration>
  77. <source>1.6</source>
  78. <target>1.6</target>
  79. </configuration>
  80. </plugin>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-surefire-plugin</artifactId>
  84. <version>2.16</version>
  85. <configuration>
  86. <systemPropertyVariables>
  87. <redis-hosts>${redis-hosts}</redis-hosts>
  88. </systemPropertyVariables>
  89. </configuration>
  90. </plugin>
  91. <plugin>
  92. <groupId>org.apache.maven.plugins</groupId>
  93. <artifactId>maven-source-plugin</artifactId>
  94. <version>2.2.1</version>
  95. <configuration>
  96. <attach>true</attach>
  97. </configuration>
  98. </plugin>
  99. <plugin>
  100. <groupId>org.apache.maven.plugins</groupId>
  101. <artifactId>maven-javadoc-plugin</artifactId>
  102. <version>2.9.1</version>
  103. <configuration>
  104. <aggregate>true</aggregate>
  105. </configuration>
  106. </plugin>
  107. <plugin>
  108. <groupId>org.apache.maven.plugins</groupId>
  109. <artifactId>maven-release-plugin</artifactId>
  110. <version>2.4.2</version>
  111. </plugin>
  112. <plugin>
  113. <artifactId>maven-deploy-plugin</artifactId>
  114. <version>2.8.1</version>
  115. <configuration>
  116. <altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository>
  117. </configuration>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. </project>