So I've been working on a web app the last few days and got around to starting the database side of things. The problem I'm getting is:
not found: object anorm
for the line
import anorm._
I have
"com.typesafe.play" %% "anorm" % "2.3.6"
and
"anorm"
in my libraryDependencies in the build.sbt.
I have done an "activator clean", "activator compile" and "activator run" along with resynchronizing the IntelliJ IDEA 14.1 project.
Using:
- Play 2.3
- Scala 2.11.1
Thanks for any help
"anorm"
in yourlibraryDependencies
but only the"com.typesafe.play" %% "anorm" % "2.3.6"
. Then tryconsole
from activator CLI to try check the import from there. – cchantep