-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sbt
More file actions
45 lines (32 loc) · 1.21 KB
/
build.sbt
File metadata and controls
45 lines (32 loc) · 1.21 KB
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
import AssemblyKeys._
name := "example-service-1"
version := "1.0-SNAPSHOT"
scalaVersion := "2.10.0"
libraryDependencies ++= Seq(
"net.databinder" %% "unfiltered-filter-async" % "0.6.4",
"net.databinder" %% "unfiltered-jetty" % "0.6.4",
"com.typesafe.akka" %% "akka-actor" % "2.1.0",
"ch.qos.logback" % "logback-classic" % "1.0.9",
"ch.qos.logback" % "logback-core" % "1.0.9",
"javax.mail" % "mail" % "1.4.6"
)
seq(assemblySettings: _*)
seq(buildInfoSettings: _*)
sourceGenerators in Compile <+= buildInfo
buildInfoKeys := Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion)
buildInfoPackage := "example"
scalacOptions ++= Seq(
"-deprecation",
"-unchecked",
//"-Xmigration",
"-Xcheckinit",
"-optimise",
//"-Xlog-implicits",
"-Xlog-reflective-calls",
//"-Xcheck-null",
"-Ywarn-all",
"-Xlint",
"-feature",
"-language:postfixOps",
"-encoding", "utf8"
)