I'm banging my head against the wall on this one.
Trying to open a cloned git SBT project at work. It is a combined Java and Scala Play project, with scala 2.11.1, SBT 0.13.6, and Play 2.5.
I use IntelliJ to import project from the cloned repo, with JDK 1.8, and all download and SBT checkboxes checked, and then run either SBT refresh, or reload from SBT shell.
After doing so, all SBT and Play code on both build.sbt and plugins.sbt is painted red, as in "cannot resolve symbol".
Looking at Intellij poroject structure, I have JDK1.8 on the SDK tab, and scala-sdk-2.11 on the Global Libraries tab. SBT and Scala plugins are installed and enabled.
SBT refresh fails on the following Play dependency, which could be the reason for the above symptom, since the SBT build does not complete:
unresolved dependency: com.typesafe.play.plugins#play-statsd_2.11;2.3.0: not found
The dependency does exist: http://dl.bintray.com/typesafe/maven-releases/com/typesafe/play/plugins/play-statsd_2.11/2.3.0/
What am I doing wrong?
Play StatsD
. Which version ofPlay StatsD
has been used in build.sbt? – KZapagol