I'm trying to use WebJars with Play Framework 2.4.0, in Intellij IDEA 14.1.3.
I have SBT 1.7.0 plugin and Scala 1.5.2 plugin (with project Scala version 2.11.6).
My application works well when I run it from the terminal ($ activator run or $ sbt run) but I have compilation error and no auto-completion in IntelliJ IDEA on my templates (cf. below), on the #at() method of @routes.WebJarAssets.at(..) (and not on the @routes.Assets.at) :
There is my route conf file :
# Map static resources from the /public folder to the /assets URL path
GET /assets/*file controllers.Assets.at(path="/public", file)
# WebJars integration into Play Framework : http://www.webjars.org/documentation
GET /webjars/*file controllers.WebJarAssets.at(file)
For information, I tried to reimport project from SBT built-in builder after deleting my .idea folder but that did not work.
Any solution ?