-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sbt
More file actions
29 lines (23 loc) · 714 Bytes
/
Copy pathbuild.sbt
File metadata and controls
29 lines (23 loc) · 714 Bytes
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
organization in ThisBuild := "com.adelbertc"
version in ThisBuild := "0.2.0"
licenses in ThisBuild += ("BSD New", url("http://opensource.org/licenses/BSD-3-Clause"))
scalaVersion in ThisBuild := "2.11.6"
crossScalaVersions in ThisBuild := List("2.10.5", scalaVersion.value)
scalacOptions in ThisBuild ++= Seq(
"-deprecation",
"-encoding", "UTF-8",
"-feature",
"-language:existentials",
"-language:experimental.macros",
"-language:higherKinds",
"-language:implicitConversions",
"-unchecked",
"-Xfatal-warnings",
"-Xlint",
"-Xlog-reflective-calls",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard"
)
lazy val core = project.in(file("core"))