File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments