forked from fehmicansaglam/progressed.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
45 lines (34 loc) · 1.11 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
import scalariform.formatter.preferences._
name := "progressed.io"
organization := "io.progressed"
version := "0.1-SNAPSHOT"
scalaVersion := "2.11.6"
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.9"
val sprayV = "1.3.2"
Seq(
"org.scala-lang.modules" %% "scala-xml" % "1.0.3",
"com.typesafe.akka" %% "akka-actor" % akkaV,
"io.spray" %% "spray-can" % sprayV,
"io.spray" %% "spray-routing" % sprayV,
"io.spray" %% "spray-caching" % sprayV)
}
assemblyJarName in assembly := "progressed.io.jar"
seq(Revolver.settings: _*)
scalariformSettings
ScalariformKeys.preferences := ScalariformKeys.preferences.value
.setPreference(AlignParameters, true)
.setPreference(DoubleIndentClassDeclaration, true)
.setPreference(MultilineScaladocCommentsStartOnFirstLine, true)
.setPreference(PlaceScaladocAsterisksBeneathSecondAsterisk, true)