lettuce-core-6.1.8.RELEASE.pom 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>io.lettuce</groupId>
  6. <artifactId>lettuce-core</artifactId>
  7. <version>6.1.8.RELEASE</version>
  8. <name>Lettuce</name>
  9. <description>Advanced and thread-safe Java Redis client for synchronous, asynchronous, and
  10. reactive usage. Supports Cluster, Sentinel, Pipelining, Auto-Reconnect, Codecs
  11. and much more.</description>
  12. <url>http://github.com/lettuce-io/lettuce-core</url>
  13. <organization>
  14. <name>lettuce.io</name>
  15. <url>https://lettuce.io</url>
  16. </organization>
  17. <licenses>
  18. <license>
  19. <name>Apache License, Version 2.0</name>
  20. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  21. <distribution>repo</distribution>
  22. </license>
  23. </licenses>
  24. <developers>
  25. <developer>
  26. <id>mp911de</id>
  27. <name>Mark Paluch</name>
  28. </developer>
  29. <developer>
  30. <id>will</id>
  31. <name>Will Glozer</name>
  32. </developer>
  33. </developers>
  34. <scm>
  35. <connection>scm:git:https://github.com/lettuce-io/lettuce-core.git</connection>
  36. <developerConnection>scm:git:https://github.com/lettuce-io/lettuce-core.git</developerConnection>
  37. <tag>6.1.8.RELEASE</tag>
  38. <url>http://github.com/lettuce-io/lettuce-core</url>
  39. </scm>
  40. <issueManagement>
  41. <system>Github</system>
  42. <url>https://github.com/lettuce-io/lettuce-core/issues</url>
  43. </issueManagement>
  44. <ciManagement>
  45. <system>Travis CI</system>
  46. <url>https://travis-ci.com/lettuce-io/lettuce-core</url>
  47. </ciManagement>
  48. <dependencies>
  49. <dependency>
  50. <groupId>io.netty</groupId>
  51. <artifactId>netty-common</artifactId>
  52. <version>4.1.75.Final</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.netty</groupId>
  57. <artifactId>netty-handler</artifactId>
  58. <version>4.1.75.Final</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>io.netty</groupId>
  63. <artifactId>netty-transport</artifactId>
  64. <version>4.1.75.Final</version>
  65. <scope>compile</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.projectreactor</groupId>
  69. <artifactId>reactor-core</artifactId>
  70. <version>3.3.22.RELEASE</version>
  71. <scope>compile</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.commons</groupId>
  75. <artifactId>commons-pool2</artifactId>
  76. <version>2.9.0</version>
  77. <scope>compile</scope>
  78. <optional>true</optional>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.jetbrains.kotlin</groupId>
  82. <artifactId>kotlin-stdlib</artifactId>
  83. <version>1.4.32</version>
  84. <scope>compile</scope>
  85. <optional>true</optional>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.jetbrains.kotlinx</groupId>
  89. <artifactId>kotlinx-coroutines-reactive</artifactId>
  90. <version>1.4.3</version>
  91. <scope>compile</scope>
  92. <optional>true</optional>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.jetbrains.kotlinx</groupId>
  96. <artifactId>kotlinx-coroutines-jdk8</artifactId>
  97. <version>1.4.3</version>
  98. <scope>compile</scope>
  99. <optional>true</optional>
  100. </dependency>
  101. <dependency>
  102. <groupId>io.netty</groupId>
  103. <artifactId>netty-tcnative</artifactId>
  104. <version>2.0.51.Final</version>
  105. <classifier>osx-x86_64</classifier>
  106. <scope>compile</scope>
  107. <optional>true</optional>
  108. </dependency>
  109. <dependency>
  110. <groupId>io.netty</groupId>
  111. <artifactId>netty-resolver-dns</artifactId>
  112. <version>4.1.75.Final</version>
  113. <scope>compile</scope>
  114. <optional>true</optional>
  115. </dependency>
  116. <dependency>
  117. <groupId>io.netty</groupId>
  118. <artifactId>netty-transport-native-epoll</artifactId>
  119. <version>4.1.75.Final</version>
  120. <classifier>linux-x86_64</classifier>
  121. <scope>compile</scope>
  122. <optional>true</optional>
  123. </dependency>
  124. <dependency>
  125. <groupId>io.netty</groupId>
  126. <artifactId>netty-transport-native-kqueue</artifactId>
  127. <version>4.1.75.Final</version>
  128. <classifier>osx-x86_64</classifier>
  129. <scope>compile</scope>
  130. <optional>true</optional>
  131. </dependency>
  132. <dependency>
  133. <groupId>io.netty.incubator</groupId>
  134. <artifactId>netty-incubator-transport-native-io_uring</artifactId>
  135. <version>0.0.13.Final</version>
  136. <classifier>linux-x86_64</classifier>
  137. <scope>compile</scope>
  138. <optional>true</optional>
  139. </dependency>
  140. <dependency>
  141. <groupId>io.zipkin.brave</groupId>
  142. <artifactId>brave</artifactId>
  143. <version>5.13.7</version>
  144. <scope>compile</scope>
  145. <optional>true</optional>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.latencyutils</groupId>
  149. <artifactId>LatencyUtils</artifactId>
  150. <version>2.0.3</version>
  151. <scope>compile</scope>
  152. <optional>true</optional>
  153. </dependency>
  154. <dependency>
  155. <groupId>io.micrometer</groupId>
  156. <artifactId>micrometer-core</artifactId>
  157. <version>1.6.13</version>
  158. <scope>compile</scope>
  159. <optional>true</optional>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.hdrhistogram</groupId>
  163. <artifactId>HdrHistogram</artifactId>
  164. <version>2.1.12</version>
  165. <scope>compile</scope>
  166. <optional>true</optional>
  167. </dependency>
  168. <dependency>
  169. <groupId>io.reactivex</groupId>
  170. <artifactId>rxjava</artifactId>
  171. <version>1.3.8</version>
  172. <scope>compile</scope>
  173. <optional>true</optional>
  174. </dependency>
  175. <dependency>
  176. <groupId>io.reactivex</groupId>
  177. <artifactId>rxjava-reactive-streams</artifactId>
  178. <version>1.2.1</version>
  179. <scope>compile</scope>
  180. <optional>true</optional>
  181. </dependency>
  182. <dependency>
  183. <groupId>io.reactivex.rxjava2</groupId>
  184. <artifactId>rxjava</artifactId>
  185. <version>2.2.21</version>
  186. <scope>compile</scope>
  187. <optional>true</optional>
  188. </dependency>
  189. <dependency>
  190. <groupId>io.reactivex.rxjava3</groupId>
  191. <artifactId>rxjava</artifactId>
  192. <version>3.0.13</version>
  193. <scope>compile</scope>
  194. <optional>true</optional>
  195. </dependency>
  196. <dependency>
  197. <groupId>javax.enterprise</groupId>
  198. <artifactId>cdi-api</artifactId>
  199. <version>2.0.SP1</version>
  200. <scope>compile</scope>
  201. <optional>true</optional>
  202. </dependency>
  203. <dependency>
  204. <groupId>javax.inject</groupId>
  205. <artifactId>javax.inject</artifactId>
  206. <version>1</version>
  207. <scope>compile</scope>
  208. <optional>true</optional>
  209. </dependency>
  210. <dependency>
  211. <groupId>com.google.code.findbugs</groupId>
  212. <artifactId>jsr305</artifactId>
  213. <version>3.0.2</version>
  214. <scope>compile</scope>
  215. <optional>true</optional>
  216. </dependency>
  217. </dependencies>
  218. </project>