如何修复 scala 版本 2.13 中 Anorm 未解决的依赖关系

How to fix the unresolved dependencies for Anorm in scala version 2.13

我想将异常依赖项导入我的 scala play 框架工作项目,但它不支持我当前的 scala 版本。我该怎么办?

libraryDependencies += "com.typesafe.play" %% "anorm" % "2.3.9"

显示错误:

sbt.librarymanagement.ResolveException: unresolved dependency: com.typesafe.play#anorm_2.13;2.3.9: not found

您使用的异常版本太旧2.3.9。此库的工件已移至 "org.playframework.anorm"。

您已经在使用 scala 2.13,所以您必须使用 :

"org.playframework.anorm" %% "anorm" % "2.6.4"