Skip to content

Files

Latest commit

12157eb · Jan 25, 2013

History

History
50 lines (36 loc) · 873 Bytes

README.md

File metadata and controls

50 lines (36 loc) · 873 Bytes

What is this?

This is an empty Scala project, with the following dependencies already configured:

  • Scala 2.10.0
  • Akka 2.1.0
  • ScalaZ 7 (SNAPSHOT)
  • ScalaCheck 1.10
  • Specs2 1.12
  • Sbt-Idea (plugin for automatically generating IntelliJ project structure)
  • Eclipse (plugin for automatically generating Eclipse project structure)
  • Ensime-sbt-cmd (plugin for automatically generating Ensime project file)
  • SBT from sbt-extras (automatically fetches sbt)

Basic usage

Launch SBT:

% ./sbt

And then:

> update 
> gen-idea  (* for IntelliJ *)
> eclipse 	(* for Eclipse  *)

To run using SBT only:

> compile
> run						(* run also compiles if necessary *)

To continuously compile:

> ~compile

To continuously run tests:

> ~test

For a more powerful templating solutions, see Giter8.