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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -