This is a template for a basic Scala/SBT project that already has the needed dependency reference in build.sbt for Scalatest support. You can check this project out if you want a template/skeleton directory structure for a new project that has those things, i.e.:
- It uses a standard SBT directory strucure.
- The dependency line to use Scalatest is already included in build.sbt.
- It includes one source code file and one test file, so out of the box you can type 'sbt compile', 'sbt run', and 'sbt test', and (assuming you have SBT installed), all those things should work.
You can checkout a read-only copy of this project with this command:
git clone git://github.com/nureineide/scala-sbt-template
Based on Alvin Alexander's BasicScalaSbtProjectWithScalatest
This code/project is shared under the terms of the Creative Commons Attribution-ShareAlike 3.0 Unported License.
See http://creativecommons.org/licenses/by-sa/3.0/ for more information.