|
9 | 9 | <packaging>jar</packaging> |
10 | 10 | <groupId>redis.clients</groupId> |
11 | 11 | <artifactId>jedis</artifactId> |
12 | | - <version>5.1.0-SNAPSHOT</version> |
| 12 | + <version>5.2.0-SNAPSHOT</version> |
13 | 13 | <name>Jedis</name> |
14 | 14 | <description>Jedis is a blazingly small and sane Redis java client.</description> |
15 | 15 | <url>https://github.com/redis/jedis</url> |
|
46 | 46 |
|
47 | 47 | <properties> |
48 | 48 | <github.global.server>github</github.global.server> |
49 | | - <slf4j.version>1.7.36</slf4j.version> |
50 | 49 | <jedis.module.name>redis.clients.jedis</jedis.module.name> |
| 50 | + <slf4j.version>1.7.36</slf4j.version> |
51 | 51 | <resilience4j.version>1.7.1</resilience4j.version> |
| 52 | + <jackson.version>2.16.0</jackson.version> |
| 53 | + <maven.surefire.version>3.2.3</maven.surefire.version> |
52 | 54 | </properties> |
53 | 55 |
|
54 | 56 | <dependencies> |
|
60 | 62 | <dependency> |
61 | 63 | <groupId>org.apache.commons</groupId> |
62 | 64 | <artifactId>commons-pool2</artifactId> |
63 | | - <version>2.11.1</version> |
| 65 | + <version>2.12.0</version> |
64 | 66 | </dependency> |
65 | 67 | <dependency> |
66 | 68 | <groupId>org.json</groupId> |
67 | 69 | <artifactId>json</artifactId> |
68 | | - <version>20230618</version> |
| 70 | + <version>20231013</version> |
69 | 71 | </dependency> |
70 | 72 | <dependency> |
71 | 73 | <groupId>com.google.code.gson</groupId> |
72 | 74 | <artifactId>gson</artifactId> |
73 | 75 | <version>2.10.1</version> |
74 | 76 | </dependency> |
75 | 77 |
|
| 78 | + <!-- UNIX socket connection support --> |
| 79 | + <dependency> |
| 80 | + <groupId>com.kohlschutter.junixsocket</groupId> |
| 81 | + <artifactId>junixsocket-core</artifactId> |
| 82 | + <version>2.8.3</version> |
| 83 | + <type>pom</type> |
| 84 | + <scope>test</scope> |
| 85 | + </dependency> |
| 86 | + <!-- Well-known text representation of geometry in RediSearch support --> |
| 87 | + <dependency> |
| 88 | + <groupId>org.locationtech.jts</groupId> |
| 89 | + <artifactId>jts-core</artifactId> |
| 90 | + <version>1.19.0</version> |
| 91 | + <scope>test</scope> |
| 92 | + </dependency> |
| 93 | + <!-- test --> |
76 | 94 | <dependency> |
77 | 95 | <groupId>junit</groupId> |
78 | 96 | <artifactId>junit</artifactId> |
|
91 | 109 | <version>${slf4j.version}</version> |
92 | 110 | <scope>test</scope> |
93 | 111 | </dependency> |
94 | | - <dependency> |
95 | | - <groupId>com.kohlschutter.junixsocket</groupId> |
96 | | - <artifactId>junixsocket-core</artifactId> |
97 | | - <version>2.6.1</version> |
98 | | - <type>pom</type> |
99 | | - <scope>test</scope> |
100 | | - </dependency> |
101 | 112 | <dependency> |
102 | 113 | <groupId>org.mockito</groupId> |
103 | 114 | <artifactId>mockito-inline</artifactId> |
|
107 | 118 | <dependency> |
108 | 119 | <groupId>com.fasterxml.jackson.core</groupId> |
109 | 120 | <artifactId>jackson-databind</artifactId> |
110 | | - <version>2.14.2</version> |
| 121 | + <version>${jackson.version}</version> |
111 | 122 | <scope>test</scope> |
112 | 123 | </dependency> |
113 | 124 | <dependency> |
114 | 125 | <groupId>com.fasterxml.jackson.datatype</groupId> |
115 | 126 | <artifactId>jackson-datatype-jsr310</artifactId> |
116 | | - <version>2.14.2</version> |
| 127 | + <version>${jackson.version}</version> |
117 | 128 | <scope>test</scope> |
118 | 129 | </dependency> |
| 130 | + |
| 131 | + <!-- circuit breaker / failover --> |
119 | 132 | <dependency> |
120 | 133 | <groupId>io.github.resilience4j</groupId> |
121 | 134 | <artifactId>resilience4j-all</artifactId> |
|
158 | 171 | <plugin> |
159 | 172 | <groupId>org.jacoco</groupId> |
160 | 173 | <artifactId>jacoco-maven-plugin</artifactId> |
161 | | - <version>0.8.5</version> |
| 174 | + <version>0.8.11</version> |
162 | 175 | <executions> |
163 | 176 | <execution> |
164 | 177 | <goals> |
|
184 | 197 | </plugin> |
185 | 198 | <plugin> |
186 | 199 | <artifactId>maven-surefire-plugin</artifactId> |
187 | | - <version>3.1.2</version> |
| 200 | + <version>${maven.surefire.version}</version> |
188 | 201 | <configuration> |
189 | 202 | <systemPropertyVariables> |
190 | 203 | <redis-hosts>${redis-hosts}</redis-hosts> |
|
212 | 225 | </plugin> |
213 | 226 | <plugin> |
214 | 227 | <artifactId>maven-javadoc-plugin</artifactId> |
215 | | - <version>3.6.0</version> |
| 228 | + <version>3.6.3</version> |
216 | 229 | <configuration> |
217 | 230 | <source>8</source><!-- Until JDK 11+ --> |
218 | 231 | <detectJavaApiLink>false</detectJavaApiLink><!-- Until JDK 11+ --> |
|
313 | 326 | <plugins> |
314 | 327 | <plugin> |
315 | 328 | <artifactId>maven-surefire-plugin</artifactId> |
316 | | - <version>3.1.2</version> |
| 329 | + <version>${maven.surefire.version}</version> |
317 | 330 | <configuration> |
318 | 331 | <test>**/examples/*Example.java</test> |
319 | 332 | </configuration> |
|
0 commit comments