Created
April 29, 2015 03:13
-
-
Save fishmacs/01ea6337fee035515972 to your computer and use it in GitHub Desktop.
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
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