Skip to content

Commit bb97b19

Browse files
committed
Release 1.4.2
1 parent bb1e9d2 commit bb97b19

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# tl;dr
88

99
* in-memory message queue system
10-
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-1.3.9.jar)), via [Docker](https://hub.docker.com/r/softwaremill/elasticmq-native/) or embedded
10+
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-1.4.2.jar)), via [Docker](https://hub.docker.com/r/softwaremill/elasticmq-native/) or embedded
1111
* [Amazon SQS](http://aws.amazon.com/sqs/)-compatible interface
1212
* fully asynchronous implementation, no blocking calls
1313
* optional UI, queue persistence
@@ -45,21 +45,21 @@ A simple UI is available for viewing real-time queue statistics.
4545
# Installation: stand-alone
4646

4747
You can download the stand-alone distribution here:
48-
[https://s3/.../elasticmq-server-1.3.9.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-1.3.9.jar)
48+
[https://s3/.../elasticmq-server-1.4.2.jar](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-1.4.2.jar)
4949

5050
Java 8 or above is required for running the server.
5151

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

5454
```
55-
java -jar elasticmq-server-1.3.9.jar
55+
java -jar elasticmq-server-1.4.2.jar
5656
```
5757

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

6161
```
62-
java -Dconfig.file=custom.conf -jar elasticmq-server-1.3.9.jar
62+
java -Dconfig.file=custom.conf -jar elasticmq-server-1.4.2.jar
6363
```
6464

6565
The config file may contain any configuration for Akka and ElasticMQ. Current ElasticMQ configuration values are:
@@ -114,7 +114,7 @@ You can also provide an alternative [Logback](http://logback.qos.ch/) configurat
114114
log INFO logs and above to the console):
115115

116116
```
117-
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-1.3.9.jar
117+
java -Dlogback.configurationFile=my_logback.xml -jar elasticmq-server-1.4.2.jar
118118
```
119119

120120
# How are queue URLs created
@@ -236,7 +236,7 @@ in the main configuration file (as described in the previous section) in the `qu
236236
Add ElasticMQ Server to `build.sbt` dependencies
237237

238238
```scala
239-
libraryDependencies += "org.elasticmq" %% "elasticmq-server" % "1.3.9"
239+
libraryDependencies += "org.elasticmq" %% "elasticmq-server" % "1.4.2"
240240
```
241241

242242
Simply start the server using custom configuration (see examples above):
@@ -408,7 +408,7 @@ Another option is to use custom `Dockerfile`:
408408
FROM openjdk:8-jre-alpine
409409
410410
ARG ELASTICMQ_VERSION
411-
ENV ELASTICMQ_VERSION ${ELASTICMQ_VERSION:-1.3.9}
411+
ENV ELASTICMQ_VERSION ${ELASTICMQ_VERSION:-1.4.2}
412412
413413
RUN apk add --no-cache curl ca-certificates
414414
RUN mkdir -p /opt/elasticmq/log /opt/elasticmq/lib /opt/elasticmq/conf
@@ -429,14 +429,14 @@ and override the entrypoint passing the required properties.
429429
430430
```scala
431431
// Scala 2.13 and 2.12
432-
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "1.3.9"
432+
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "1.4.2"
433433
```
434434

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

438438
```scala
439-
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "1.3.9"
439+
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "1.4.2"
440440
```
441441

442442
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.
@@ -449,15 +449,15 @@ Dependencies:
449449
<dependency>
450450
<groupId>org.elasticmq</groupId>
451451
<artifactId>elasticmq-rest-sqs_2.12</artifactId>
452-
<version>1.3.9</version>
452+
<version>1.4.2</version>
453453
</dependency>
454454
```
455455

456456
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.
457457

458458
# Current versions
459459

460-
*Stable*: 1.3.9
460+
*Stable*: 1.4.2
461461

462462
# Logging
463463

0 commit comments

Comments
 (0)