Reputation: 21
I want to compile my lagom project in Scala 3. Follow this documentation scala3 documentation, when prepare the dependencies, I change my build.sbt:
lazy val `service-api` = (project in file("service-api"))
.settings(
libraryDependencies ++= Seq(
lagomScaladslApi
).map(_.cross(CrossVersion.for3Use2_13))
)
but lagom API depends other projects can't found.
error info:
[error] (service-api / update) sbt.librarymanagement.ResolveException: Error downloading com.lightbend.lagom:lagom-scaladsl-server_3:1.6.4
[error] Not found
Upvotes: 2
Views: 289