Skip to content

Commit 57ce40b

Browse files
author
Maxim Fedorov
committed
Update README with new versions in mind
1 parent bce4a0d commit 57ce40b

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

README.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,28 @@ using confirms can be found in this project under [ConfirmsExample.scala](https:
2424
## Setup
2525

2626
### Sbt
27+
Since version `3.0.0`
28+
``` scala
29+
libraryDependencies += "com.thenewmotion" %% "akka-rabbitmq" % "3.0.0"
30+
```
2731

32+
To add as depency prior releases add resolver to New Motion public repo
2833
``` scala
29-
resolvers += "The New Motion Public Repo" at "http://nexus.thenewmotion.com/content/groups/public/"
30-
libraryDependencies += "com.thenewmotion.akka" %% "akka-rabbitmq" % "3.0.0"
34+
resolvers += "New Motion Public" at "http://nexus.thenewmotion.com/content/groups/public/"
35+
libraryDependencies += "com.thenewmotion" %% "akka-rabbitmq" % "2.3"
3136
```
3237

3338
### Maven
39+
Since version `3.0.0`
40+
```xml
41+
<dependency>
42+
<groupId>com.thenewmotion</groupId>
43+
<artifactId>akka-rabbitmq_{2.11/2.12}</artifactId>
44+
<version>3.0.0</version>
45+
</dependency>
46+
```
3447

48+
For prior releases
3549
```xml
3650
<repository>
3751
<id>thenewmotion</id>
@@ -42,7 +56,7 @@ libraryDependencies += "com.thenewmotion.akka" %% "akka-rabbitmq" % "3.0.0"
4256
<dependency>
4357
<groupId>com.thenewmotion.akka</groupId>
4458
<artifactId>akka-rabbitmq_{2.11/2.12}</artifactId>
45-
<version>3.0.0</version>
59+
<version>2.3</version>
4660
</dependency>
4761
```
4862

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name := "akka-rabbitmq"
44
enablePlugins(OssLibPlugin)
55

66
licenses := Seq(("Apache License, Version 2.0", url("http://www.apache.org/licenses/LICENSE-2.0")))
7-
homepage := Some(new URL("https://github.com/thenewmotion/akka-rabbitmq"))
7+
homepage := Some(new URL("https://github.com/NewMotion/akka-rabbitmq"))
88

99
def akka(scalaVersion: String) = {
1010
val version = "2.4.14"

0 commit comments

Comments
 (0)