I just installed Intellij 13 and tried to import some basic SBT project. However, I got the following error:

An error message indicates that it org.jetbrains#sbt-structure;latest.integrationcould not be found.
I am using SBT 0.13 and everything (compilation, work, etc.) seems to work from the CLI. I also followed the plugin installation instructions idea-sbt( https://github.com/mpeltonen/sbt-idea ).
build.sbt, which I use:
name := "demo"
version := "1.0"
scalaVersion := "2.9.2"
Project / plugins.sbt:
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.5.2")
Has anyone had this problem and managed to solve it?
Thanks!
source
share