forked from fehmicansaglam/progressed.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
47 lines (36 loc) · 1.25 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
45
46
47
import scalariform.formatter.preferences._
name := "ilerle.me"
organization := "me.ilerle"
version := "0.1-SNAPSHOT"
scalaVersion := "2.11.1"
scalacOptions := Seq(
"-unchecked",
"-deprecation",
"-encoding", "utf8",
"-feature",
"-language:higherKinds",
"-language:postfixOps",
"-language:implicitConversions",
"-language:existentials")
resolvers ++= Seq(
"spray repo" at "http://repo.spray.io/")
libraryDependencies ++= {
val akkaV = "2.3.2"
val sprayV = "1.3.1"
Seq(
"org.scala-lang.modules" %% "scala-xml" % "1.0.2",
"io.spray" %% "spray-can" % sprayV,
"io.spray" %% "spray-routing" % sprayV,
"io.spray" %% "spray-caching" % sprayV,
"io.spray" %% "spray-testkit" % sprayV,
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV)
}
assemblySettings
seq(Revolver.settings: _*)
scalariformSettings
ScalariformKeys.preferences := ScalariformKeys.preferences.value
.setPreference(AlignParameters, true)
.setPreference(DoubleIndentClassDeclaration, true)
.setPreference(MultilineScaladocCommentsStartOnFirstLine, true)
.setPreference(PlaceScaladocAsterisksBeneathSecondAsterisk, true)