I'm using IntelliJ Idea 14 CE. It has a nice built-in integration with SBT and so, once I've created my Play project with activator I'm able to work on it, debug it and so on.
Now, I've added a library dependency in build.sbt
:
libraryDependencies += "org.twitter4j" % "twitter4j" % "4.0.4"
Running activator run
from the command line, I see that it is resolved correctly.
The problem is that Idea doesn't see it. In the list of "External libraries", i see no SBT: or.twitter4j
as I'd expect and in fact the IDE doesn't let me import
it.
I've already tried the "Refresh" button from the SBT Window with no results.