Skip to content

Commit

Permalink
Rebranding full speed
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim Fedorov committed Mar 8, 2017
1 parent 873b3cf commit 419fb82
Show file tree
Hide file tree
Showing 17 changed files with 28 additions and 19 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ Please note that while this library transparently reconnects when a connection f
messages will be lost. If you want to make sure every message is delivered, you have to use acknowledgements
and confirms. This is documented
[in the RabbitMQ Reliability Guide](https://www.rabbitmq.com/reliability.html#connection-failures). An example program
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).
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).

## Setup

### Sbt
Since version `3.0.0`
``` scala
libraryDependencies += "com.thenewmotion" %% "akka-rabbitmq" % "3.0.0"
libraryDependencies += "com.newmotion" %% "akka-rabbitmq" % "4.0.0"
```

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

### Maven
Since version `4.0.0`
```xml
<dependency>
<groupId>com.newmotion</groupId>
<artifactId>akka-rabbitmq_{2.11/2.12}</artifactId>
<version>4.0.0</version>
</dependency>
```

Since version `3.0.0`
```xml
<dependency>
Expand Down Expand Up @@ -64,7 +73,7 @@ For prior releases
Before start, you need to add import statement

```scala
import com.thenewmotion.akka.rabbitmq._
import com.newmotion.akka.rabbitmq._
```

### Create connection
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
organization := "com.thenewmotion"
organization := "com.newmotion"
name := "akka-rabbitmq"

enablePlugins(OssLibPlugin)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka.rabbitmq
package com.newmotion.akka.rabbitmq

import akka.actor.{ Props, ActorRef, FSM }
import collection.immutable.Queue
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka.rabbitmq
package com.newmotion.akka.rabbitmq

import akka.actor.{ ActorRef, Props, FSM }
import concurrent.duration._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka.rabbitmq
package com.newmotion.akka.rabbitmq

import akka.actor.{ Props, ActorRef }

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka.rabbitmq
package com.newmotion.akka.rabbitmq

import scala.language.reflectiveCalls
import akka.actor.Actor
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka.rabbitmq
package com.newmotion.akka.rabbitmq

import akka.actor.{ Actor, ActorRef }
import scala.collection.immutable.Queue
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka
package com.newmotion.akka

import akka.actor.{ Props, ActorRef }
import akka.util.Timeout
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka.rabbitmq
package com.newmotion.akka.rabbitmq

import org.specs2.mutable.Specification
import org.specs2.specification.Scope
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka.rabbitmq
package com.newmotion.akka.rabbitmq

import org.specs2.mock.Mockito
import akka.testkit.TestFSMRef
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka.rabbitmq
package com.newmotion.akka.rabbitmq

import org.specs2.mock.Mockito
import akka.testkit.TestFSMRef
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka.rabbitmq
package com.newmotion.akka.rabbitmq

import java.util.concurrent.TimeUnit

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka.rabbitmq
package com.newmotion.akka.rabbitmq

import akka.actor.{ Props, Actor, ActorRef, Terminated }
import akka.testkit._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka.rabbitmq
package com.newmotion.akka.rabbitmq
package examples

import akka.actor.{ ActorRef, ActorSystem }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka.rabbitmq
package com.newmotion.akka.rabbitmq
package examples

import akka.actor.{ ActorRef, ActorSystem }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.thenewmotion.akka.rabbitmq
package com.newmotion.akka.rabbitmq
package examples

import akka.actor.{ Actor, ActorRef, Props, ActorSystem }
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "3.0.2-SNAPSHOT"
version in ThisBuild := "4.0.0-SNAPSHOT"

0 comments on commit 419fb82

Please sign in to comment.