Skip to content

Commit 419fb82

Browse files
author
Maxim Fedorov
committed
Rebranding full speed
1 parent 873b3cf commit 419fb82

17 files changed

+28
-19
lines changed

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ Please note that while this library transparently reconnects when a connection f
1919
messages will be lost. If you want to make sure every message is delivered, you have to use acknowledgements
2020
and confirms. This is documented
2121
[in the RabbitMQ Reliability Guide](https://www.rabbitmq.com/reliability.html#connection-failures). An example program
22-
using confirms can be found in this project under [ConfirmsExample.scala](https://github.com/thenewmotion/akka-rabbitmq/blob/master/src/test/scala/com/thenewmotion/akka/rabbitmq/examples/ConfirmsExample.scala).
22+
using confirms can be found in this project under [ConfirmsExample.scala](https://github.com/NewMotion/akka-rabbitmq/blob/master/src/test/scala/akka/rabbitmq/examples/ConfirmsExample.scala).
2323

2424
## Setup
2525

2626
### Sbt
2727
Since version `3.0.0`
2828
``` scala
29-
libraryDependencies += "com.thenewmotion" %% "akka-rabbitmq" % "3.0.0"
29+
libraryDependencies += "com.newmotion" %% "akka-rabbitmq" % "4.0.0"
3030
```
3131

3232
To add as depency prior releases add resolver to New Motion public repo
@@ -36,6 +36,15 @@ libraryDependencies += "com.thenewmotion" %% "akka-rabbitmq" % "2.3"
3636
```
3737

3838
### Maven
39+
Since version `4.0.0`
40+
```xml
41+
<dependency>
42+
<groupId>com.newmotion</groupId>
43+
<artifactId>akka-rabbitmq_{2.11/2.12}</artifactId>
44+
<version>4.0.0</version>
45+
</dependency>
46+
```
47+
3948
Since version `3.0.0`
4049
```xml
4150
<dependency>
@@ -64,7 +73,7 @@ For prior releases
6473
Before start, you need to add import statement
6574

6675
```scala
67-
import com.thenewmotion.akka.rabbitmq._
76+
import com.newmotion.akka.rabbitmq._
6877
```
6978

7079
### Create connection

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
organization := "com.thenewmotion"
1+
organization := "com.newmotion"
22
name := "akka-rabbitmq"
33

44
enablePlugins(OssLibPlugin)

src/main/scala/com/thenewmotion/akka/rabbitmq/ChannelActor.scala renamed to src/main/scala/akka/rabbitmq/ChannelActor.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thenewmotion.akka.rabbitmq
1+
package com.newmotion.akka.rabbitmq
22

33
import akka.actor.{ Props, ActorRef, FSM }
44
import collection.immutable.Queue

src/main/scala/com/thenewmotion/akka/rabbitmq/ConnectionActor.scala renamed to src/main/scala/akka/rabbitmq/ConnectionActor.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thenewmotion.akka.rabbitmq
1+
package com.newmotion.akka.rabbitmq
22

33
import akka.actor.{ ActorRef, Props, FSM }
44
import concurrent.duration._

src/main/scala/com/thenewmotion/akka/rabbitmq/Message.scala renamed to src/main/scala/akka/rabbitmq/Message.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thenewmotion.akka.rabbitmq
1+
package com.newmotion.akka.rabbitmq
22

33
import akka.actor.{ Props, ActorRef }
44

src/main/scala/com/thenewmotion/akka/rabbitmq/RabbitMqActor.scala renamed to src/main/scala/akka/rabbitmq/RabbitMqActor.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thenewmotion.akka.rabbitmq
1+
package com.newmotion.akka.rabbitmq
22

33
import scala.language.reflectiveCalls
44
import akka.actor.Actor

src/main/scala/com/thenewmotion/akka/rabbitmq/StashUntilChannel.scala renamed to src/main/scala/akka/rabbitmq/StashUntilChannel.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thenewmotion.akka.rabbitmq
1+
package com.newmotion.akka.rabbitmq
22

33
import akka.actor.{ Actor, ActorRef }
44
import scala.collection.immutable.Queue

src/main/scala/com/thenewmotion/akka/rabbitmq/package.scala renamed to src/main/scala/akka/rabbitmq/package.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thenewmotion.akka
1+
package com.newmotion.akka
22

33
import akka.actor.{ Props, ActorRef }
44
import akka.util.Timeout

src/test/scala/com/thenewmotion/akka/rabbitmq/ActorSpec.scala renamed to src/test/scala/akka/rabbitmq/ActorSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thenewmotion.akka.rabbitmq
1+
package com.newmotion.akka.rabbitmq
22

33
import org.specs2.mutable.Specification
44
import org.specs2.specification.Scope

src/test/scala/com/thenewmotion/akka/rabbitmq/ChannelActorSpec.scala renamed to src/test/scala/akka/rabbitmq/ChannelActorSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thenewmotion.akka.rabbitmq
1+
package com.newmotion.akka.rabbitmq
22

33
import org.specs2.mock.Mockito
44
import akka.testkit.TestFSMRef

0 commit comments

Comments
 (0)