Skip to content

Instantly share code, notes, and snippets.

@michaelklishin
Created July 4, 2011 13:32
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelklishin/1063337 to your computer and use it in GitHub Desktop.
Save michaelklishin/1063337 to your computer and use it in GitHub Desktop.
An example SBT 0.10 build file that gets you BlueEyes on Scala 2.9
name := "theNextBigThing"
version := "0.1.0"
organization := "com.megacorp"
scalaVersion := "2.9.0-1"
scalacOptions ++= Seq("-deprecation", "-unchecked")
// unmanagedBase <<= baseDirectory { base => base / "lib_managed" }
resolvers ++= Seq(
"Sonatype" at "http://nexus.scala-tools.org/content/repositories/public",
"Scala Tools" at "http://scala-tools.org/repo-snapshots/",
"JBoss" at "http://repository.jboss.org/nexus/content/groups/public/",
"Akka" at "http://akka.io/repository/"
)
libraryDependencies ++= Seq(
"com.reportgrid" % "blueeyes_2.9.0-1" % "0.4.4" % "compile"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment