Intellij 13 and importing an SBT project

Viewed 2282

I just installed Intellij 13 and tried importing some basic SBT project. However I received the following error:

enter image description here

The error message tells that org.jetbrains#sbt-structure;latest.integration cannot be found.

I am using SBT 0.13 and everything (compiling, running and etc..) seems to work from the CLI. I have also followed the installation instructions of the idea-sbt plugin (https://github.com/mpeltonen/sbt-idea).

build.sbt that I am using:

name := "demo"

version := "1.0"

scalaVersion := "2.9.2"

project/plugins.sbt:

addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.5.2")

Did anyone had this issue and managed to resolve it?

Thanks!

1 Answers
Related