forked from copygrinder/copygrinder_server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
44 lines (32 loc) · 1.31 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
organization := "org.copygrinder"
version := "0.1"
scalaVersion := "2.10.3"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
resolvers ++= Seq(
"spray repo" at "http://repo.spray.io/",
"JGit repo" at "https://repo.eclipse.org/content/groups/releases/"
)
/* SCALA LIBS */
libraryDependencies ++= Seq(
"io.spray" % "spray-can" % "1.2-M8",
"io.spray" % "spray-routing" % "1.2-M8",
"io.spray" % "spray-testkit" % "1.2-M8",
"com.typesafe.akka" %% "akka-actor" % "2.2.0-RC1",
"com.typesafe.akka" %% "akka-testkit" % "2.2.0-RC1"
)
/* JAVA LIBS */
libraryDependencies ++= Seq(
"org.eclipse.jgit" % "org.eclipse.jgit" % "3.1.0.201310021548-r",
"commons-io" % "commons-io" % "2.4"
)
/* TEST LIBS */
libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "2.2.2" % "test",
"org.scalatest" %% "scalatest" % "2.0.RC2" % "test",
"org.scalamock" %% "scalamock-scalatest-support" % "3.0.1" % "test"
)
seq(Revolver.settings: _*)
unmanagedSourceDirectories in Compile := (scalaSource in Compile).value :: Nil
unmanagedSourceDirectories in Test := (scalaSource in Test).value :: Nil
EclipseKeys.withSource := true
fork := true