Skip to content

Commit e17450f

Browse files
author
Alexandre Curreli
committed
Updated binaries section with repository information
1 parent a38a1e2 commit e17450f

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,20 @@ Scredis is an advanced [Redis](http://redis.io) client entirely written in Scala
1616
## Getting started
1717

1818
### Binaries
19-
Scredis is compatible with Scala 2.9.x and 2.10.x. Binary releases will soon be hosted on a Nexus repository. This page will be updated once the repository is available.
19+
Scredis is compatible with Scala 2.9.x and 2.10.x. Binary releases are hosted on the Sonatype Central Repository.
2020

2121
```scala
22-
// Comming soon!
23-
resolvers += "Name" at "Releases URL"
22+
resolvers += "Sonatype OSS Releases" at "https://oss.sonatype.org/content/repositories/releases/"
2423

25-
libraryDependencies ++= Seq("livestream" %% "scredis" % "1.0.0")
24+
libraryDependencies ++= Seq("com.livestream" %% "scredis" % "1.0.0")
2625
```
2726

28-
Snapshots will be hosted in a separate repository.
27+
Snapshots are hosted on a separate repository.
2928

3029
```scala
31-
// Comming soon!
32-
resolvers += "Name" at "Snapshots URL"
30+
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
3331

34-
libraryDependencies ++= Seq("livestream" %% "scredis" % "1.0.1-SNAPSHOT")
32+
libraryDependencies ++= Seq("com.livestream" %% "scredis" % "1.0.1-SNAPSHOT")
3533
```
3634

3735
### Quick example

0 commit comments

Comments
 (0)