Skip to content

Instantly share code, notes, and snippets.

@sandys
Forked from sam/build.sbt
Created October 26, 2013 04:59
Show Gist options
  • Save sandys/7165437 to your computer and use it in GitHub Desktop.
Save sandys/7165437 to your computer and use it in GitHub Desktop.
name := "foo"
version := "1.0-SNAPSHOT"
scalaVersion := "2.10.3"
scalacOptions in ThisBuild ++= Seq(
"-language:_",
"-feature",
"-unchecked",
"-deprecation")
testOptions in Test := Nil
parallelExecution in ThisBuild := false
resolvers ++= Seq(
"Maven Central" at "http://repo1.maven.org/maven2",
"Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/",
"Sonatype Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/")
libraryDependencies ++= Seq(
"org.seleniumhq.selenium" % "selenium-firefox-driver" % "2.32.0",
"io.spray" %% "spray-json" % "1.2.3",
"org.scalatest" %% "scalatest" % "2.0.M8" % "test",
"com.lambdaworks" % "scrypt" % "1.3.3",
"com.typesafe" %% "scalalogging-slf4j" % "1.0.1",
"com.typesafe" % "config" % "1.0.0",
"commons-validator" % "commons-validator" % "1.4.0")
lazy val foo = play.Project("foo", path = file("."))
.dependsOn(cloudant, hasher)
lazy val cloudant = project in file("lib/scala-cloudant-dispatch")
lazy val hasher = RootProject(uri("git://github.com/Nycto/Hasher.git"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment