Skip to content

Instantly share code, notes, and snippets.

@devth
Created January 14, 2016 20:18
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 devth/9eaf08333144f1826d96 to your computer and use it in GitHub Desktop.
Save devth/9eaf08333144f1826d96 to your computer and use it in GitHub Desktop.
lazy val root = (project in file(".")).
settings(
name := "compiled-query",
version := "1.0",
scalaVersion := "2.11.7",
resolvers += "Sonatype OSS Snapshots" at
"https://oss.sonatype.org/content/repositories/snapshots",
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value,
libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaVersion.value,
libraryDependencies += "org.scalaz" %% "scalaz-core" % "7.1.3",
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.4" % "test",
libraryDependencies += "com.storm-enroute" %% "scalameter" % "0.7",
libraryDependencies += "asm" % "asm-all" % "3.3.1",
libraryDependencies += "org.scalaz.stream" %% "scalaz-stream" % "0.8",
testFrameworks += new TestFramework("org.scalameter.ScalaMeterFramework"),
parallelExecution in Test := false
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment