Reputation: 726
I'm using play framework 2.4.2. I added "org.sorm-framework" % "sorm" % "0.3.16"
to my build.sbt, and run update
while in activator console in my app. It downloaded package properly, however my IntelliJ does not see sorm.
When I write
import sorm._
i get response Cannot resolve symbol sorm
.
What should i do?
Upvotes: 1
Views: 572
Reputation: 684
You should refresh your sbt project in intellij by clicking View -> Tool Windows -> SBT -> Refresh all sbt projects
Upvotes: 3