forked from allprojects/securescala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
81 lines (56 loc) · 2.48 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name := "master_thesis_source"
version := "1.0"
// scalaVersion := "2.11.7"
scalaVersion := "2.12.1"
resolvers += "bintray/non" at "https://dl.bintray.com/non/maven"
scalacOptions ++= Seq(
// "-Xfatal-warnings",
//&"-Xfuture",
//"-Xlint",
// "-Yinline-warnings",
//"-Yno-adapted-args",
//"-Ywarn-adapted-args",
//"-Ywarn-dead-code",
//"-Ywarn-inaccessible",
//"-Ywarn-infer-any",
//"-Ywarn-nullary-override",
//"-Ywarn-nullary-unit",
//"-Ywarn-numeric-widen",
//"-Ywarn-unused",
//"-Ywarn-unused-import",
//"-Ywarn-value-discard",
//"-deprecation",
"-encoding", "UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-unchecked"
)
scalacOptions in (Compile, console) ~= (_ filterNot (Set("-Ywarn-unused-import","-Xfatal-warnings")))
scalacOptions in (Test, console) := (scalacOptions in (Compile, console)).value
addCompilerPlugin("org.spire-math" % "kind-projector_2.12" % "0.9.9")
libraryDependencies += "io.reactivex" % "rxscala_2.12" % "0.26.5"
libraryDependencies += "org.spire-math" %% "spire" % "0.13.0"
libraryDependencies += "org.scalaz" %% "scalaz-core" % "7.1.17"
libraryDependencies += "commons-codec" % "commons-codec" % "1.10"
libraryDependencies += "org.scalatest" % "scalatest_2.12" % "3.0.5" % "test"
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.14.0"
libraryDependencies += "com.typesafe.akka" % "akka-actor_2.12" % "2.5.20"
libraryDependencies += "com.typesafe.akka" % "akka-remote_2.12" % "2.5.20"
libraryDependencies += "com.espertech" % "esper" % "5.2.0"
//libraryDependencies += "org.scala-lang" % "scala-swing" % "2.11.0-M7"
libraryDependencies += "org.scala-lang.modules" %% "scala-swing" % "2.0.0-M2"
libraryDependencies += "com.storm-enroute" %% "scalameter" % "0.10.1" % "test"
//libraryDependencies += "org.pelotom" %% "effectful" % "1.2-SNAPSHOT"
lazy val effectfulProject = RootProject(uri("https://github.com/azanov/effectful.git"))
lazy val root = (project in file(".")).dependsOn(effectfulProject)
libraryDependencies += "io.argonaut" %% "argonaut" % "6.2.2"
libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.5"
testFrameworks += new TestFramework("org.scalameter.ScalaMeterFramework")
// To avoid classloader problems with sbt console and native ope library
fork := true
// Otherwise problems with forking (too many)
parallelExecution in Test := false
// Forward stdinput of sbt to forked process for interactive use
connectInput in run := true