jedis-3.2.0.pom 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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>3.2.0</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.2.0</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>org.slf4j</groupId>
  50. <artifactId>slf4j-api</artifactId>
  51. <version>1.7.25</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-pool2</artifactId>
  56. <version>2.6.2</version>
  57. <type>jar</type>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>junit</groupId>
  62. <artifactId>junit</artifactId>
  63. <version>4.12</version>
  64. <type>jar</type>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.logging.log4j</groupId>
  69. <artifactId>log4j-core</artifactId>
  70. <version>2.11.1</version>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.logging.log4j</groupId>
  75. <artifactId>log4j-slf4j-impl</artifactId>
  76. <version>2.11.1</version>
  77. <scope>test</scope>
  78. </dependency>
  79. </dependencies>
  80. <distributionManagement>
  81. <snapshotRepository>
  82. <id>ossrh</id>
  83. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  84. </snapshotRepository>
  85. <repository>
  86. <id>ossrh</id>
  87. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  88. </repository>
  89. </distributionManagement>
  90. <build>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-compiler-plugin</artifactId>
  95. <version>3.1</version>
  96. <configuration>
  97. <source>1.7</source>
  98. <target>1.7</target>
  99. </configuration>
  100. </plugin>
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-surefire-plugin</artifactId>
  104. <version>2.19.1</version>
  105. <configuration>
  106. <systemPropertyVariables>
  107. <redis-hosts>${redis-hosts}</redis-hosts>
  108. </systemPropertyVariables>
  109. </configuration>
  110. </plugin>
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-source-plugin</artifactId>
  114. <version>2.2.1</version>
  115. <configuration>
  116. <attach>true</attach>
  117. </configuration>
  118. <executions>
  119. <execution>
  120. <id>attach-sources</id>
  121. <goals>
  122. <goal>jar</goal>
  123. </goals>
  124. </execution>
  125. </executions>
  126. </plugin>
  127. <plugin>
  128. <groupId>org.apache.maven.plugins</groupId>
  129. <artifactId>maven-javadoc-plugin</artifactId>
  130. <version>2.9.1</version>
  131. <configuration>
  132. <aggregate>true</aggregate>
  133. <additionalparam>-Xdoclint:none</additionalparam>
  134. </configuration>
  135. <executions>
  136. <execution>
  137. <id>attach-javadoc</id>
  138. <goals>
  139. <goal>jar</goal>
  140. </goals>
  141. </execution>
  142. </executions>
  143. </plugin>
  144. <plugin>
  145. <groupId>org.apache.maven.plugins</groupId>
  146. <artifactId>maven-release-plugin</artifactId>
  147. <version>2.4.2</version>
  148. </plugin>
  149. <plugin>
  150. <groupId>org.sonatype.plugins</groupId>
  151. <artifactId>nexus-staging-maven-plugin</artifactId>
  152. <version>1.6.7</version>
  153. <extensions>true</extensions>
  154. <configuration>
  155. <serverId>ossrh</serverId>
  156. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  157. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  158. </configuration>
  159. </plugin>
  160. <plugin>
  161. <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
  162. <artifactId>maven-java-formatter-plugin</artifactId>
  163. <version>0.4</version>
  164. <configuration>
  165. <configFile>${project.basedir}/hbase-formatter.xml</configFile>
  166. </configuration>
  167. </plugin>
  168. <plugin>
  169. <artifactId>maven-jar-plugin</artifactId>
  170. <version>2.6</version>
  171. <configuration>
  172. <archive>
  173. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  174. </archive>
  175. </configuration>
  176. </plugin>
  177. <plugin>
  178. <groupId>org.apache.maven.plugins</groupId>
  179. <artifactId>maven-gpg-plugin</artifactId>
  180. <version>1.5</version>
  181. <executions>
  182. <execution>
  183. <id>sign-artifacts</id>
  184. <phase>verify</phase>
  185. <goals>
  186. <goal>sign</goal>
  187. </goals>
  188. </execution>
  189. </executions>
  190. </plugin>
  191. <plugin>
  192. <groupId>org.apache.felix</groupId>
  193. <artifactId>maven-bundle-plugin</artifactId>
  194. <version>2.5.3</version>
  195. <executions>
  196. <execution>
  197. <id>bundle-manifest</id>
  198. <phase>process-classes</phase>
  199. <goals>
  200. <goal>manifest</goal>
  201. </goals>
  202. </execution>
  203. </executions>
  204. </plugin>
  205. </plugins>
  206. </build>
  207. </project>