## Use Jedis as a maven dependency: ### Official Releases ```xml <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>5.2.0</version> </dependency> ``` ### Snapshots ```xml <repositories> <repository> <id>snapshots-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> </repositories> ``` and ```xml <dependencies> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>6.0.0-SNAPSHOT</version> </dependency> </dependencies> ```