kcl-akka-stream
kcl-akka-stream copied to clipboard
Add build against scala 2.13
Is it possible to start publishing artifacts against scala 2.13?
I have adjusted the sbt build locally and can build against 2.13 but I had to:
- exclude akka 2.4 (not available for 2.13)
- remove
-Yno-adapted-args(no longer valid afaict) - remove
-Xfuture(no longer valid) - upgrade
scalatestto3.1.0 - add
"org.scalatestplus" %% "mockito-1-10" % "3.1.0.0" % Testas scalatest has split out separate modules - in
DefaultTestContext.scala, replaceimport org.scalatest.mockito.MockitoSugarwithimport org.scalatestplus.mockito.MockitoSugar - in
KinesisWorkerSourceSourceSpec, fix a test failure due to change in error message
Hi @julianhowarth, feel free to open a PR with those changes if you think it's worth it.
Hopefully, soon this will be available in alpakka, but we can still release "maintenance" versions.
The PR has been merged, so expect it soon on alpakka :)
Hello, I am also interested by Scala 2.13 support and also Akka 2.6 support. I don't see the PR you are talking about. I don't understand, this project is now integrated into alpakka?
Hi @joelvim.
Yes, this project is deprecated in favor of the alpakka KCL components. The PR is this one:
https://github.com/akka/alpakka/pull/1667
The code has been integrated but not a new alpakka release has been made, so we'll need to wait for Alpakka 2.0.0-M3 or RC/official releases.
I'll try to find some time to document properly the README on this repository and archive it when the alpakka release is made.
This is great! Thank you very much for this work!