Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.13 KB

README.md

File metadata and controls

27 lines (20 loc) · 1.13 KB

Quick-start project for Scala Coding Dojos

  • Eclipse and IntelliJ IDEA SBT support plugins already configured
  • Uses Scala 2.10.2 -> you will need an IDE that supports it!

How-to: use this project

  1. Install SBT! See http://www.scala-sbt.org/release/docs/Getting-Started/Setup.html
  2. Clone this repository to your local computer
  3. cd dojo-quickstart
  4. Type sbt
  5. On the SBT prompt type either eclipse or gen-idea to generate Eclipse and IntelliJ IDEA project files.
  6. Import the project into your IDE.
  7. Start coding! ;-)

Further customization (optional)

If you want to change the generic names of this quick-start project, follow these instructions:

  1. Remove the project from the IDE and exit sbt
  2. Rename the directory to your liking
  3. Go to build.sbt and change the name of the project
  4. Enter sbt again and re-generate the IDE project either with eclipse or gen-idea
  5. Import the project into your IDE
  6. Change the name of the main classes, packages, etc.

When re-naming packages, make sure that you rename it both under "main" and "test".