-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
47 lines (44 loc) · 1.18 KB
/
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
40
41
42
43
44
45
46
47
name := "cmrfs"
organization := "hr.element.cmrfs"
version := "0.1.1"
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-swing" % "2.0.0-M2"
, "com.github.scala-incubator.io" %% "scala-io-file" % "0.4.3-1"
, "com.typesafe.scala-logging" %% "scala-logging" % "3.1.0"
, "ch.qos.logback" % "logback-classic" % "1.1.3"
)
unmanagedSourceDirectories in Compile := (scalaSource in Compile).value :: Nil
unmanagedResourceDirectories in Compile := (resourceDirectory in Compile).value :: Nil
unmanagedSourceDirectories in Test := Nil
unmanagedResourceDirectories in Test := Nil
scalaVersion := "2.11.7"
scalacOptions := Seq(
"-deprecation"
, "-encoding", "UTF-8"
, "-feature"
, "-language:existentials"
, "-language:implicitConversions"
, "-language:postfixOps"
, "-language:reflectiveCalls"
, "-optimise"
, "-unchecked"
, "-Xcheckinit"
, "-Xlint"
, "-Xmax-classfile-name", "72"
, "-Xno-forwarders"
, "-Xverify"
, "-Yclosure-elim"
, "-Yconst-opt"
, "-Ydead-code"
, "-Yinline-warnings"
, "-Yinline"
, "-Yrepl-sync"
, "-Ywarn-adapted-args"
, "-Ywarn-dead-code"
, "-Ywarn-inaccessible"
, "-Ywarn-infer-any"
, "-Ywarn-nullary-override"
, "-Ywarn-nullary-unit"
, "-Ywarn-numeric-widen"
, "-Ywarn-unused"
)