Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 907 Bytes

README.md

File metadata and controls

51 lines (37 loc) · 907 Bytes

What is this?

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

  • Scala 2.9.2
  • Akka 2.0.3
  • 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  *)
> ensime generate (* for Ensime *)

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.