How to attach sources to scala sbt project at Intellij Idea? -


i new @ scala. , start want use intellij 13.1.5 ide.

however ide can't attach sources. here how looks anyval:

enter image description here

search @ internet can't find source.

i tried attach sources , attach unpacked scala archive. doesn't work either.

update:

here sbt onfiguration:

name := "scalatest-selenium"  version := "1.0"  scalaversion := "2.11.1"  librarydependencies ++= seq(   "net.sourceforge.htmlunit" % "htmlunit" % "2.14",   "org.seleniumhq.selenium" % "selenium-java" % "2.42.2",   "org.scalacheck" % "scalacheck_2.10" % "1.11.4" % "test",   "org.scalatest" % "scalatest_2.11" % "2.2.0" % "test" )  testoptions in test += tests.argument(testframeworks.scalatest, "-u", "target/test-reports") 

how solve trouble?

i rid of trouble following way:

removed .sbt directory in home folder.

when run sbt again, new folder created in correct format , error goes away.


Comments

Popular posts from this blog

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

c# - Search and Add Comment with OpenXML for Word -