Skip to content

Commit 2311a32

Browse files
committed
WIP: Upgrade acked-stream for scala 2.13
1 parent ae7dba9 commit 2311a32

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

build.sbt

+7-2
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,14 @@ lazy val `akka-stream` = (project in file("./addons/akka-stream")).
136136
settings(commonSettings: _*).
137137
settings(
138138
name := "op-rabbit-akka-stream",
139+
// Temporarily depend on jitpack published version of acked-streams for scala 2.13
140+
resolvers += "jitpack" at "https://jitpack.io",
139141
libraryDependencies ++= Seq(
140-
"com.timcharper" %% "acked-streams" % "2.1.1",
141-
"com.typesafe.akka" %% "akka-stream" % akkaVersion),
142+
// TODO: remove and switch to com.timcharper when https://github.com/timcharper/acked-stream/pull/7 gets merged and published
143+
// "com.timcharper" %% "acked-streams" % "2.1.1",
144+
"com.github.deal-engine.acked-stream" %% "acked-streams" % "8f17c92",
145+
"com.typesafe.akka" %% "akka-stream" % akkaVersion
146+
),
142147
unmanagedResourceDirectories in Test ++= Seq(
143148
file(".").getAbsoluteFile / "core" / "src" / "test" / "resources"),
144149
unmanagedSourceDirectories in Test ++= Seq(

0 commit comments

Comments
 (0)