All notable changes to this project will be documented in this file.
- Support for SBT 1.0.0+.
.value
should be changed to .evaluated
on the testOnly
task in build.sbt
:
Before:
testOnly in Test := (testOnly in Test).dependsOn(startElasticMQ in Test).value
After:
testOnly in Test := (testOnly in Test).dependsOn(startElasticMQ in Test).evaluated
- Enable different settings for different configurations
- Fix PidUtil class collision when using multiple localytics/sbt-* projects
- Refactor to best practices and SBT 1.0 syntax
- Update to ElasticMQ 0.9.3
- Change test cleanup to support testOnly
- Add HeapSize configuration
- Download and spin up a local ElasticMQ instance via sbt
- Allow setting ElasticMQ configs (NodeAddress, RestSQS, Queues) via sbt