Skip to content

Instantly share code, notes, and snippets.

@jvorhauer
Created August 3, 2021 13:12
Show Gist options
  • Save jvorhauer/aade6192b97a8f60479fddf044260edd to your computer and use it in GitHub Desktop.
Save jvorhauer/aade6192b97a8f60479fddf044260edd to your computer and use it in GitHub Desktop.
lazy val foo = project.in(file("foo"))
.settings(
scalaVersion := "3.0.0",
libraryDependencies +=
("com.typesafe.akka" %% "akka-actor-typed" % "2.6.15")
.cross(CrossVersion.for3Use2_13)
)
@jvorhauer
Copy link
Author

Akka is not published yet for Scala 3, but Scala 3 can use the 2.13 libraries as-is.
See Stack Overflow with the worry about macros...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment