Skip to content

Commit

Permalink
0.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Mar 23, 2016
1 parent 2790b84 commit 91e104d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ tl;dr
-----

* message queue system
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.8.12.jar)) or embedded
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.9.0.jar)) or embedded
* [Amazon SQS](http://aws.amazon.com/sqs/)-compatible interface
* fully asynchronous implementation, no blocking calls

Expand Down Expand Up @@ -40,18 +40,18 @@ Installation: stand-alone
-------------------------

You can download the stand-alone distribution here:
[https://s3/.../elasticmq-server-0.8.12.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.8.12.jar)
[https://s3/.../elasticmq-server-0.9.0.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.9.0.jar)

Java 6 or above is required for running the server.

Simply run the jar and you should get a working server, which binds to `localhost:9324`:

java -jar elasticmq-server-0.8.12.jar
java -jar elasticmq-server-0.9.0.jar

ElasticMQ uses [Typesafe Config](https://github.com/typesafehub/config) for configuration. To specify custom
configuration values, create a file (e.g. `custom.conf`), fill it in with the desired values, and pass it to the server:

java -Dconfig.file=custom.conf -jar elasticmq-server-0.8.12.jar
java -Dconfig.file=custom.conf -jar elasticmq-server-0.9.0.jar

The config file may contain any configuration for Akka and ElasticMQ. Current ElasticMQ configuration values are:

Expand Down Expand Up @@ -84,7 +84,7 @@ You can also provide an alternative [Logback](http://logback.qos.ch/) configurat
[default](server/src/main/resources/logback.xml) is configured to
log INFO logs and above to the console):

java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.8.12.jar
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-0.9.0.jar

How are queue URLs created
--------------------------
Expand Down Expand Up @@ -169,15 +169,15 @@ ElasticMQ dependencies in SBT
-----------------------------

// Scala 2.11
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.8.12"
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.9.0"

// Scala 2.10
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.7.1"

If you don't want the SQS interface, but just use the actors directly, you can add a dependency only to the `core`
module:

val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.8.12"
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.9.0"

If you want to use a snapshot version, you will need to add the [https://oss.sonatype.org/content/repositories/snapshots/](https://oss.sonatype.org/content/repositories/snapshots/) repository to your configuration.

Expand All @@ -189,7 +189,7 @@ Dependencies:
<dependency>
<groupId>org.elasticmq</groupId>
<artifactId>elasticmq-rest-sqs_2.11</artifactId>
<version>0.8.12</version>
<version>0.9.0</version>
</dependency>

If you want to use a snapshot version, you will need to add the [https://oss.sonatype.org/content/repositories/snapshots/](https://oss.sonatype.org/content/repositories/snapshots/) repository to your configuration.
Expand All @@ -203,9 +203,9 @@ have been discontinued.
Current versions
----------------

*Stable*: 0.8.12
*Stable*: 0.9.0, 0.8.12

*Development*: 0.9.0-SNAPSHOT
*Development*: 0.9.1-SNAPSHOT

Logging
-------
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import AssemblyKeys._
object BuildSettings {
val buildSettings = Defaults.coreDefaultSettings ++ Seq (
organization := "org.elasticmq",
version := "0.9.0-beta1",
version := "0.9.0",
scalaVersion := "2.11.8",

libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.5",
Expand Down

0 comments on commit 91e104d

Please sign in to comment.