-
start the sbt console with ./sbt
-
In the sbt console, generate the configuration for your IDE:
- for eclipse: 'eclipse with-source=true'
- for IDEA (Before version 14): 'gen-idea'
In Intellij, if you have an error concerning a shared output path, check if there is no
projectfolder in themacrosproject. If there is one, just remove it.
-
wait to have downloaded the whole internet
-
open the project in your IDE
-
In the sbt console, compile the project with 'compile'
-
In the sbt console, let the tests run with 'test' No surprise, the tests are not successful.
-
Start your IDE and make sure, that you have installed the 'Scala' plugin Go to 'Settings' -> 'Plugins' -> 'Install JetBrains Plugins' and search for 'scala'
-
Go to 'File' -> 'Open' and open the 'build.sbt' file of this project.
-
In the Import Windows mark 'Use auto-import' and 'Download sources and Docs'
-
Wait to have downloaded the whole internet
-
You should now see the project structure and the 'src/main/scala' and 'src/test/scala' directory.
-
Open the context menu of 'src/test/scala', click 'Run' -> 'ScalaTests in Scala'