Created
April 11, 2012 23:31
-
-
Save rweeks/2363470 to your computer and use it in GitHub Desktop.
Example SBT build settings showing compiler options
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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