Skip to content

Commit

Permalink
Merge pull request #311 from 2m/wip-sqs-one-akka-version-2m
Browse files Browse the repository at this point in the history
#310 exclude newer Akka dependency
  • Loading branch information
jrudolph authored May 24, 2017
2 parents d621bb7 + aa956f9 commit 3a840e3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,12 @@ object Dependencies {
val Sqs = Seq(
libraryDependencies ++= Seq(
"com.amazonaws" % "aws-java-sdk-sqs" % "1.11.109", // ApacheV2
"org.elasticmq" %% "elasticmq-rest-sqs" % "0.13.4" % Test, // ApacheV2
"org.elasticmq" %% "elasticmq-rest-sqs" % "0.13.4" % Test excludeAll(
// elasticmq-rest-sqs depends on Akka 2.5, exclude it, so we can choose Akka version
ExclusionRule(organization = "com.typesafe.akka") //
), // ApacheV2
// elasticmq-rest-sqs depends on akka-slf4j which was excluded
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion % Test, // ApacheV2
// pull up akka-http version to the latest version for elasticmq-rest-sqs
"com.typesafe.akka" %% "akka-http" % AkkaHttpVersion % Test, // ApacheV2
"org.mockito" % "mockito-core" % "2.7.17" % Test // MIT
Expand Down

0 comments on commit 3a840e3

Please sign in to comment.