- Eclipse and IntelliJ IDEA SBT support plugins already configured
- Uses Scala 2.10.2 -> you will need an IDE that supports it!
- Install SBT! See http://www.scala-sbt.org/release/docs/Getting-Started/Setup.html
- Clone this repository to your local computer
cd dojo-quickstart
- Type
sbt
- On the SBT prompt type either
eclipse
orgen-idea
to generate Eclipse and IntelliJ IDEA project files. - Import the project into your IDE.
- Start coding! ;-)
If you want to change the generic names of this quick-start project, follow these instructions:
- Remove the project from the IDE and exit sbt
- Rename the directory to your liking
- Go to
build.sbt
and change thename
of the project - Enter
sbt
again and re-generate the IDE project either witheclipse
orgen-idea
- Import the project into your IDE
- Change the name of the main classes, packages, etc.
When re-naming packages, make sure that you rename it both under "main" and "test".