You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
# tl;dr
8
8
9
9
* in-memory message queue system
10
-
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-0.15.8.jar)), via [Docker](https://hub.docker.com/r/softwaremill/elasticmq/) or embedded
10
+
* runs stand-alone ([download](https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-1.0.0.jar)), via [Docker](https://hub.docker.com/r/softwaremill/elasticmq/) or embedded
RUN mkdir -p /opt/elasticmq/log /opt/elasticmq/lib /opt/elasticmq/config
@@ -296,12 +296,12 @@ and override the entrypoint passing the required properties.
296
296
# ElasticMQ dependencies in SBT
297
297
298
298
// Scala 2.13 and 2.12
299
-
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "0.15.8"
299
+
val elasticmqSqs = "org.elasticmq" %% "elasticmq-rest-sqs" % "1.0.0"
300
300
301
301
If you don't want the SQS interface, but just use the actors directly, you can add a dependency only to the `core`
302
302
module:
303
303
304
-
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "0.15.8"
304
+
val elasticmqCore = "org.elasticmq" %% "elasticmq-core" % "1.0.0"
305
305
306
306
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.
307
307
@@ -312,14 +312,14 @@ Dependencies:
312
312
<dependency>
313
313
<groupId>org.elasticmq</groupId>
314
314
<artifactId>elasticmq-rest-sqs_2.12</artifactId>
315
-
<version>0.15.8</version>
315
+
<version>1.0.0</version>
316
316
</dependency>
317
317
318
318
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.
0 commit comments