-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
45 lines (39 loc) · 1 KB
/
Copy pathbuild.sbt
File metadata and controls
45 lines (39 loc) · 1 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
45
name := """jnr-hdf5"""
version := "0.1-SNAPSHOT"
scalaVersion := "2.11.7"
libraryDependencies ++= Seq(
"com.github.jnr" % "jnr-ffi" % "2.0.7",
"ch.qos.logback" % "logback-classic" % "1.1.3")
scalacOptions ++= Seq(
"-deprecation",
"-encoding", "UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-unchecked",
"-Xfatal-warnings",
"-Xlint",
"-Yno-adapted-args",
"-Ywarn-dead-code", // N.B. doesn't work well with the ??? hole
"-Ywarn-numeric-widen",
"-Ywarn-value-discard",
"-Xfuture",
//"-Ywarn-unused-import", // 2.11 only
// not actually a masochist
//"-Yno-predef",
//"-Yno-imports"
// nonsense
"-Xlog-free-terms",
"-Xlog-free-types",
"-Xlog-reflective-calls",
//"-Xexperimental",
"-target:jvm-1.8",
"-Ybackend:GenBCode",
"-Ydelambdafy:method",
"-Ywarn-nullary-override",
"-Ywarn-nullary-unit",
"-Ywarn-unused",
"-Ywarn-value-discard"
)
//mainClass in compile := Some("ProductionServer")