Skip to content

Commit

Permalink
WIP: Upgrade acked-stream for scala 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
vic committed Jul 16, 2020
1 parent ae7dba9 commit 2311a32
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,14 @@ lazy val `akka-stream` = (project in file("./addons/akka-stream")).
settings(commonSettings: _*).
settings(
name := "op-rabbit-akka-stream",
// Temporarily depend on jitpack published version of acked-streams for scala 2.13
resolvers += "jitpack" at "https://jitpack.io",
libraryDependencies ++= Seq(
"com.timcharper" %% "acked-streams" % "2.1.1",
"com.typesafe.akka" %% "akka-stream" % akkaVersion),
// TODO: remove and switch to com.timcharper when https://github.com/timcharper/acked-stream/pull/7 gets merged and published
// "com.timcharper" %% "acked-streams" % "2.1.1",
"com.github.deal-engine.acked-stream" %% "acked-streams" % "8f17c92",
"com.typesafe.akka" %% "akka-stream" % akkaVersion
),
unmanagedResourceDirectories in Test ++= Seq(
file(".").getAbsoluteFile / "core" / "src" / "test" / "resources"),
unmanagedSourceDirectories in Test ++= Seq(
Expand Down

0 comments on commit 2311a32

Please sign in to comment.