We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7120ee commit 53194ddCopy full SHA for 53194dd
README.md
@@ -46,6 +46,8 @@ You can download the latest build at:
46
47
Or use it as a maven dependency:
48
49
+### Official Releases
50
+
51
```xml
52
<dependency>
53
<groupId>redis.clients</groupId>
@@ -56,6 +58,29 @@ Or use it as a maven dependency:
56
58
</dependency>
57
59
```
60
61
+### Snapshots
62
63
+```xml
64
+ <repositories>
65
+ <repository>
66
+ <id>snapshots-repo</id>
67
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
68
+ </repository>
69
+ </repositories>
70
+```
71
72
+and
73
74
+ <dependencies>
75
+ <dependency>
76
+ <groupId>redis.clients</groupId>
77
+ <artifactId>jedis</artifactId>
78
+ <version>3.0.0-SNAPSHOT</version>
79
+ </dependency>
80
+ </dependencies>
81
82
83
84
To use it just:
85
86
```java
0 commit comments