-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
31 lines (27 loc) · 1011 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
29
30
31
name := "http4s-session"
organization in ThisBuild := "com.github.hgiddens"
scalaVersion in ThisBuild := "2.11.8"
scalacOptions in ThisBuild ++= Seq(
"-deprecation",
"-unchecked",
"-feature",
"-language:experimental.macros",
"-language:higherKinds",
"-Xlint",
"-Xlog-free-terms",
"-Ywarn-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard"
)
scalacOptions in Test in ThisBuild += "-Yrangepos"
autoAPIMappings in ThisBuild := true
homepage in ThisBuild := Some(url("https://github.com/hgiddens/htt4ps-session"))
licenses in ThisBuild := Seq("Apache-2.0" -> url("http://opensource.org/licenses/Apache-2.0"))
import scalariform.formatter.preferences._
scalariformPreferences in ThisBuild := scalariformPreferences.value.
setPreference(DoubleIndentClassDeclaration, true).
setPreference(PlaceScaladocAsterisksBeneathSecondAsterisk, true).
setPreference(SpacesAroundMultiImports, false)
lazy val core = project
lazy val example = project.dependsOn(core)