scala - Anorm unresolved dependencies -
i'm getting "unresolved dependencies" when trying 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 :
"com.typesafe.play" %% "anorm" % "2.5.1"
Comments
Post a Comment