jedis-5.1.0.pom 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  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>5.1.0</version>
  12. <name>Jedis</name>
  13. <description>Jedis is a blazingly small and sane Redis java client.</description>
  14. <url>https://github.com/redis/jedis</url>
  15. <mailingLists>
  16. <mailingList>
  17. <name>Jedis Mailing List</name>
  18. <post>jedis_redis@googlegroups.com</post>
  19. <archive>
  20. https://groups.google.com/group/jedis_redis
  21. </archive>
  22. </mailingList>
  23. </mailingLists>
  24. <licenses>
  25. <license>
  26. <name>MIT</name>
  27. <url>https://github.com/redis/jedis/blob/master/LICENSE</url>
  28. <distribution>repo</distribution>
  29. </license>
  30. </licenses>
  31. <issueManagement>
  32. <system>github</system>
  33. <url>https://github.com/redis/jedis/issues</url>
  34. </issueManagement>
  35. <scm>
  36. <connection>scm:git:git@github.com:redis/jedis.git</connection>
  37. <url>scm:git:git@github.com:redis/jedis.git</url>
  38. <developerConnection>scm:git:git@github.com:redis/jedis.git</developerConnection>
  39. <tag>jedis-3.4.1</tag>
  40. </scm>
  41. <properties>
  42. <github.global.server>github</github.global.server>
  43. <slf4j.version>1.7.36</slf4j.version>
  44. <jedis.module.name>redis.clients.jedis</jedis.module.name>
  45. <resilience4j.version>1.7.1</resilience4j.version>
  46. </properties>
  47. <dependencies>
  48. <dependency>
  49. <groupId>org.slf4j</groupId>
  50. <artifactId>slf4j-api</artifactId>
  51. <version>${slf4j.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-pool2</artifactId>
  56. <version>2.12.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.json</groupId>
  60. <artifactId>json</artifactId>
  61. <version>20231013</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.google.code.gson</groupId>
  65. <artifactId>gson</artifactId>
  66. <version>2.10.1</version>
  67. </dependency>
  68. <!-- UNIX socket connection support -->
  69. <dependency>
  70. <groupId>com.kohlschutter.junixsocket</groupId>
  71. <artifactId>junixsocket-core</artifactId>
  72. <version>2.8.1</version>
  73. <type>pom</type>
  74. <scope>test</scope>
  75. </dependency>
  76. <!-- Well-known text representation of geometry in RediSearch support -->
  77. <dependency>
  78. <groupId>org.locationtech.jts</groupId>
  79. <artifactId>jts-core</artifactId>
  80. <version>1.19.0</version>
  81. <scope>test</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>junit</groupId>
  85. <artifactId>junit</artifactId>
  86. <version>4.13.2</version>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.hamcrest</groupId>
  91. <artifactId>hamcrest</artifactId>
  92. <version>2.2</version>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.slf4j</groupId>
  97. <artifactId>slf4j-simple</artifactId>
  98. <version>${slf4j.version}</version>
  99. <scope>test</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.mockito</groupId>
  103. <artifactId>mockito-inline</artifactId>
  104. <version>4.11.0</version>
  105. <scope>test</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.fasterxml.jackson.core</groupId>
  109. <artifactId>jackson-databind</artifactId>
  110. <version>2.14.2</version>
  111. <scope>test</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.fasterxml.jackson.datatype</groupId>
  115. <artifactId>jackson-datatype-jsr310</artifactId>
  116. <version>2.14.2</version>
  117. <scope>test</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>io.github.resilience4j</groupId>
  121. <artifactId>resilience4j-all</artifactId>
  122. <version>${resilience4j.version}</version>
  123. <optional>true</optional>
  124. </dependency>
  125. <dependency>
  126. <groupId>io.github.resilience4j</groupId>
  127. <artifactId>resilience4j-circuitbreaker</artifactId>
  128. <version>${resilience4j.version}</version>
  129. <optional>true</optional>
  130. </dependency>
  131. <dependency>
  132. <groupId>io.github.resilience4j</groupId>
  133. <artifactId>resilience4j-retry</artifactId>
  134. <version>${resilience4j.version}</version>
  135. <optional>true</optional>
  136. </dependency>
  137. </dependencies>
  138. <distributionManagement>
  139. <snapshotRepository>
  140. <id>ossrh</id>
  141. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  142. </snapshotRepository>
  143. <repository>
  144. <id>ossrh</id>
  145. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  146. </repository>
  147. </distributionManagement>
  148. <build>
  149. <resources>
  150. <resource>
  151. <directory>src/main/resources</directory>
  152. <filtering>true</filtering>
  153. </resource>
  154. </resources>
  155. <plugins>
  156. <plugin>
  157. <groupId>org.jacoco</groupId>
  158. <artifactId>jacoco-maven-plugin</artifactId>
  159. <version>0.8.5</version>
  160. <executions>
  161. <execution>
  162. <goals>
  163. <goal>prepare-agent</goal>
  164. </goals>
  165. </execution>
  166. <execution>
  167. <id>report</id>
  168. <phase>test</phase>
  169. <goals>
  170. <goal>report</goal>
  171. </goals>
  172. </execution>
  173. </executions>
  174. </plugin>
  175. <plugin>
  176. <artifactId>maven-compiler-plugin</artifactId>
  177. <version>3.11.0</version>
  178. <configuration>
  179. <source>1.8</source>
  180. <target>1.8</target>
  181. </configuration>
  182. </plugin>
  183. <plugin>
  184. <artifactId>maven-surefire-plugin</artifactId>
  185. <version>3.2.2</version>
  186. <configuration>
  187. <systemPropertyVariables>
  188. <redis-hosts>${redis-hosts}</redis-hosts>
  189. </systemPropertyVariables>
  190. <excludes>
  191. <exclude>**/examples/*Example.java</exclude>
  192. </excludes>
  193. <!--<trimStackTrace>false</trimStackTrace>-->
  194. </configuration>
  195. </plugin>
  196. <plugin>
  197. <artifactId>maven-source-plugin</artifactId>
  198. <version>3.3.0</version>
  199. <configuration>
  200. <attach>true</attach>
  201. </configuration>
  202. <executions>
  203. <execution>
  204. <id>attach-sources</id>
  205. <goals>
  206. <goal>jar</goal>
  207. </goals>
  208. </execution>
  209. </executions>
  210. </plugin>
  211. <plugin>
  212. <artifactId>maven-javadoc-plugin</artifactId>
  213. <version>3.6.2</version>
  214. <configuration>
  215. <source>8</source><!-- Until JDK 11+ -->
  216. <detectJavaApiLink>false</detectJavaApiLink><!-- Until JDK 11+ -->
  217. <!--<doclint>none</doclint>-->
  218. <!--<doclint>all,-missing</doclint>-->
  219. </configuration>
  220. <executions>
  221. <execution>
  222. <id>attach-javadoc</id>
  223. <goals>
  224. <goal>jar</goal>
  225. </goals>
  226. </execution>
  227. </executions>
  228. </plugin>
  229. <plugin>
  230. <artifactId>maven-release-plugin</artifactId>
  231. <version>3.0.1</version>
  232. </plugin>
  233. <plugin>
  234. <groupId>org.sonatype.plugins</groupId>
  235. <artifactId>nexus-staging-maven-plugin</artifactId>
  236. <version>1.6.13</version>
  237. <extensions>true</extensions>
  238. <configuration>
  239. <serverId>ossrh</serverId>
  240. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  241. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  242. </configuration>
  243. </plugin>
  244. <plugin>
  245. <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
  246. <artifactId>maven-java-formatter-plugin</artifactId>
  247. <version>0.4</version>
  248. <configuration>
  249. <configFile>${project.basedir}/hbase-formatter.xml</configFile>
  250. </configuration>
  251. </plugin>
  252. <plugin>
  253. <artifactId>maven-jar-plugin</artifactId>
  254. <version>3.3.0</version>
  255. <configuration>
  256. <archive>
  257. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  258. <manifestEntries>
  259. <Automatic-Module-Name>${jedis.module.name}</Automatic-Module-Name>
  260. </manifestEntries>
  261. </archive>
  262. </configuration>
  263. </plugin>
  264. <plugin>
  265. <groupId>org.apache.felix</groupId>
  266. <artifactId>maven-bundle-plugin</artifactId>
  267. <version>5.1.9</version>
  268. <executions>
  269. <execution>
  270. <id>bundle-manifest</id>
  271. <phase>process-classes</phase>
  272. <goals>
  273. <goal>manifest</goal>
  274. </goals>
  275. </execution>
  276. </executions>
  277. </plugin>
  278. </plugins>
  279. </build>
  280. <profiles>
  281. <profile>
  282. <id>release</id>
  283. <build>
  284. <plugins>
  285. <!--Sign the components - this is required by maven central for releases -->
  286. <plugin>
  287. <artifactId>maven-gpg-plugin</artifactId>
  288. <version>3.1.0</version>
  289. <configuration>
  290. <gpgArguments>
  291. <arg>--pinentry-mode</arg>
  292. <arg>loopback</arg>
  293. </gpgArguments>
  294. </configuration>
  295. <executions>
  296. <execution>
  297. <id>sign-artifacts</id>
  298. <phase>verify</phase>
  299. <goals>
  300. <goal>sign</goal>
  301. </goals>
  302. </execution>
  303. </executions>
  304. </plugin>
  305. </plugins>
  306. </build>
  307. </profile>
  308. <profile>
  309. <id>doctests</id>
  310. <build>
  311. <plugins>
  312. <plugin>
  313. <artifactId>maven-surefire-plugin</artifactId>
  314. <version>3.2.2</version>
  315. <configuration>
  316. <test>**/examples/*Example.java</test>
  317. </configuration>
  318. </plugin>
  319. </plugins>
  320. </build>
  321. </profile>
  322. </profiles>
  323. </project>