-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
38 lines (34 loc) · 954 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
32
33
34
35
36
37
38
lazy val finchIntro = project.in(file("."))
.settings(moduleName := "finch-intro")
.settings(baseSettings)
lazy val baseSettings = Seq(
organization := "io.github.rpless",
version := "0.1.0",
scalaVersion := "2.11.7",
libraryDependencies ++= baseDependencies,
scalacOptions ++= compilerOptions,
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots")
)
)
lazy val baseDependencies = Seq(
"com.github.finagle" %% "finch-core" % "0.9.0-SNAPSHOT" changing(),
"com.github.finagle" %% "finch-argonaut" % "0.9.0-SNAPSHOT" changing(),
"org.scalatest" %% "scalatest" % "2.2.5" % "test"
)
lazy val compilerOptions = Seq(
"-deprecation",
"-encoding", "UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-unchecked",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard",
"-Ywarn-unused-import",
"-Xfuture",
"-Xlint"
)