-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
42 lines (28 loc) · 810 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
39
organization := "net.turambar"
name := "palimpsest"
version := "0.1-SNAPSHOT"
scalaVersion := "2.11.12"
fork in Compile := true
javaOptions in Compile ++= Seq("-Xmx2G")
testOptions in Test ++= Seq(Tests.Filter(s => !s.endsWith("Props")))
//Seq(bintrayResolverSettings:_*)
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % "2.11.12",
// "com.chuusai" %% "shapeless" % "2.2.5",
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
"org.scalacheck" %% "scalacheck" % "1.12.5" % "test"
)
scalacOptions ++= Seq(
"-optimise",
"-Yinline-warnings",
// "-Ylog-classpath",
// "-Xlog-implicits",
"-Xexperimental",
"-feature",
"-deprecation",
"-language:postfixOps",
"-language:implicitConversions",
"-language:higherKinds",
"-language:reflectiveCalls",
"-language:existentials"
)