forked from geow-org/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (23 loc) · 898 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
name := """api"""
organization := "org.geow"
version := "0.1"
scalaVersion := "2.11.2"
resolvers ++= Seq(
Resolver.sonatypeRepo("releases"),
Resolver.sonatypeRepo("snapshots"),
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/",
"Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases"
)
libraryDependencies ++= Seq(
"org.scala-lang" %% "scala-pickling" % "0.9.1",
"org.apache.commons" % "commons-compress" % "1.8.1",
"org.scala-lang" % "scala-xml" % "2.11.0-M4",
"joda-time" % "joda-time" % "2.3",
"org.hamcrest" % "hamcrest-all" % "1.3" % "test",
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
"org.scalacheck" %% "scalacheck" % "1.11.6" % "test",
"org.specs2" %% "specs2" % "2.4.11" % "test",
"org.mockito" % "mockito-core" % "1.9.5" % "test",
"org.mockito" % "mockito-all" % "1.9.5" % "test",
"junit" % "junit" % "4.11" % "test"
)