File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
extensions/redis-client/runtime
src/main/java/io/quarkus/redis/runtime/client/graal Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 3131 <groupId >io.smallrye.reactive</groupId >
3232 <artifactId >smallrye-mutiny-vertx-redis-client</artifactId >
3333 </dependency >
34+
35+ <dependency >
36+ <groupId >org.graalvm.sdk</groupId >
37+ <artifactId >nativeimage</artifactId >
38+ <scope >provided</scope >
39+ </dependency >
40+
3441 <!-- Add the health extension as optional as we will produce the health check only if it's included -->
3542 <dependency >
3643 <groupId >io.quarkus</groupId >
Original file line number Diff line number Diff line change 1+ package io .quarkus .redis .runtime .client .graal ;
2+
3+ import java .util .Random ;
4+
5+ import com .oracle .svm .core .annotate .Alias ;
6+ import com .oracle .svm .core .annotate .RecomputeFieldValue ;
7+ import com .oracle .svm .core .annotate .TargetClass ;
8+
9+ class RedisClientSubstitutions {
10+
11+ }
12+
13+ @ TargetClass (className = "io.vertx.redis.client.impl.SentinelTopology" )
14+ final class Target_io_vertx_redis_client_impl_SentinelTopology {
15+
16+ @ Alias
17+ @ RecomputeFieldValue (kind = RecomputeFieldValue .Kind .Reset )
18+ static Random RANDOM ;
19+ }
You can’t perform that action at this time.
0 commit comments