I'm getting "Unresolved dependencies" when trying to install Anorm.
Note: Unresolved dependencies path:
[warn] com.typesafe.play:anorm_2.11:2.5.4 (C:\Users\rod\GDrive\projects\webalvin\build.sbt#L11-17)
[warn] +- io.scalnado:webalvin_2.12:1.0-SNAPSHOT
My built.sbt
is:
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.12.2"
libraryDependencies ++= Seq(guice,
jdbc,
"org.scalatestplus.play" %% "scalatestplus-play" % "3.1.0" % Test,
"org.postgresql" % "postgresql" % "42.1.1",
"com.typesafe.play" % "anorm_2.11" % "2.5.4"
)
I've tried also :
"com.typesafe.play" %% "anorm" % "2.5.1"
I just had the same problem, you just need to update the Anorm version based on your Scala version. Right now with Scala version
2.12.4
, my anorm-related dependencies arejdbc
andanorm
: