Skip to content

Instantly share code, notes, and snippets.

@fishmacs
Created April 29, 2015 03:13
Show Gist options
  • Save fishmacs/01ea6337fee035515972 to your computer and use it in GitHub Desktop.
Save fishmacs/01ea6337fee035515972 to your computer and use it in GitHub Desktop.
import sbt._
class SQLShellProject(info: ProjectInfo) extends DefaultProject(info) {
override def compileOptions = Unchecked :: super.compileOptions.toList
// External dependencies
val scalaToolsRepo = "Scala-Tools Maven Repository" at
"http://scala-tools.org/repo-releases/org/scala-tools/testing/scalatest/0.9.5/"
val scalatest = "org.scala-tools.testing" % "scalatest" % "0.9.5"
val joptSimple = "net.sf.jopt-simple" % "jopt-simple" % "3.1"
val jodaTime = "joda-time" % "joda-time" % "1.6"
// Grizzled comes from local machine for now
val grizzled = "grizzled-scala-library" % "grizzled-scala-library" % "0.1" from
"http://internal-repo/~bmc/code/grizzled-scala-library-0.1.jar"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment