-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.sbt
29 lines (17 loc) · 981 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name := "Stoop"
version := "0.9.10-SNAPSHOT"
scalaVersion := "2.10.3"
scalacOptions += "-deprecation"
scalacOptions += "-feature"
resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
resolvers += "Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases"
resolvers += "spray repo" at "http://repo.spray.io"
libraryDependencies ++= Seq("org.scalaz" %% "scalaz-core" % "7.1.0",
"io.spray" %% "spray-json" % "1.2.5",
"org.scalaz" %% "scalaz-effect" % "7.1.0",
"org.scalaz" %% "scalaz-concurrent" % "7.1.0",
"org.scalaz.stream" %% "scalaz-stream" % "0.6a")
libraryDependencies += "net.databinder.dispatch" %% "dispatch-core" % "0.10.0"
libraryDependencies += "org.scalatest" % "scalatest_2.10" % "2.0" % "test"
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.10.1" % "test"
publishMavenStyle := true