Skip to content

Commit

Permalink
Mention Lettuce 5 in readme #681
Browse files Browse the repository at this point in the history
  • Loading branch information
mp911de committed Jan 22, 2018
1 parent 744fcbe commit 2e59f1e
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,22 +50,39 @@ Releases of lettuce are available in the maven central repository. Take also a l
Example for Maven:

```xml
<!-- Lettuce 4 -->
<dependency>
<groupId>biz.paluch.redis</groupId>
<artifactId>lettuce</artifactId>
<version>x.y.z</version>
</dependency>

<!-- Lettuce 5 -->
<dependency>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
<version>x.y.z</version>
</dependency>
```

Using Snapshots:

```xml
<!-- Lettuce 4 -->
<dependency>
<groupId>biz.paluch.redis</groupId>
<artifactId>lettuce</artifactId>
<version>x.y.z</version>
<version>x.y.z-SNAPSHOT</version>
</dependency>

<!-- Lettuce 5 -->
<dependency>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
<version>x.y.z.BUILD-SNAPSHOT</version>
</dependency>


<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
Expand Down

0 comments on commit 2e59f1e

Please sign in to comment.