-
-
Save sandys/7165437 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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