scalaVersion := "3.8.4"
val pekkoVersion = "2.0.0-M3"
libraryDependencies ++= Seq(
"org.apache.pekko" %% "pekko-actor-typed" % pekkoVersion,
"org.apache.pekko" %% "pekko-stream" % pekkoVersion,
"org.apache.pekko" %% "pekko-http" % "2.0.0-M1"
)
scalacOptions += "-deprecation"
[warn] 5 | def b(request: HttpRequest) = request.attribute(AttributeKeys.remoteAddress)
[warn] | ^
[warn] |Usage of implicit method attributeKey defined in object JavaMapping, which is not accessible here. In Scala 3.10, this implicit will no longer be found.
Steps
build.sbt
project/build.properties
sbt.version=1.12.11A.scala
Problem
Note