I am working on running ElasticMQ as part of some automated acceptance tests for some SQS code that has not previously had test coverage.
I wanted to download the jar using maven and I would like to run the ElastcMQ server jar in standalone mode.
However, this does not work when I try to run the maven provided elasticmq-server JAR:
```
java -jar elasticmq-server_2.13-0.15.4.jar
Exception in thread "main" java.lang.NoClassDefFoundError: org/elasticmq/util/Logging
```
Looking at the JAR, using `jar -tvf`, I can see the difference between the 'standalone' linked JAR from the readme page and the maven provided one.
Is it possible to provide the uberjar as an artifact in maven?
Is there another approach I should be using to acquire the standalone JAR as part of the build process?
Thanks for your help -