Skip to content

Instantly share code, notes, and snippets.

@rweeks
Created April 11, 2012 23:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rweeks/2363470 to your computer and use it in GitHub Desktop.
Save rweeks/2363470 to your computer and use it in GitHub Desktop.
Example SBT build settings showing compiler options
name := "TCP Server Build Configuration"
version := "0.1.0"
scalaVersion := "2.9.1"
javacOptions ++= Seq("-Xlint:unchecked")
scalacOptions ++= Seq("-unchecked", "-deprecation")
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies += "com.typesafe.akka" % "akka-actor" % "2.0"
libraryDependencies += "com.mongodb.casbah" % "casbah_2.9.0-1" % "2.1.5.0"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment