forked from fommil/fpmortals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
48 lines (40 loc) · 1.65 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
// this file exists only so I can have quick access to a REPL
// with the correct dependencies.
addCommandAlias("cpl", "all compile")
addCommandAlias("fmt", "all scalafmtSbt scalafmt")
scalaVersion in ThisBuild := "2.12.6"
scalacOptions in ThisBuild ++= Seq(
"-language:_",
//"-Xsource:2.13",
"-Ypartial-unification",
"-deprecation"
)
libraryDependencies ++= Seq(
"com.github.mpilquist" %% "simulacrum" % "0.13.0",
"com.chuusai" %% "shapeless" % "2.3.3",
"org.scalaz" %% "scalaz-effect" % "7.2.25",
"org.scalaz" %% "scalaz-ioeffect" % "2.10.1",
"eu.timepit" %% "refined-scalaz" % "0.9.2",
"com.lihaoyi" %% "sourcecode" % "0.1.4",
"io.estatico" %% "newtype" % "0.4.2"
)
val derivingVersion = "1.0.0"
libraryDependencies ++= Seq(
"org.scalaz" %% "deriving-macro" % derivingVersion,
compilerPlugin("org.scalaz" %% "deriving-plugin" % derivingVersion),
"org.scalaz" %% "scalaz-deriving" % derivingVersion,
"org.scalaz" %% "scalaz-deriving-magnolia" % derivingVersion,
"org.scalaz" %% "scalaz-deriving-scalacheck" % derivingVersion
)
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.7")
addCompilerPlugin(
"org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full
)
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.2.4")
scalacOptions in (Compile, console) -= "-Xfatal-warnings"
initialCommands in (Compile, console) := Seq(
"scalaz._, Scalaz._"
).mkString("import ", ",", "")
//scalafmtOnCompile in ThisBuild := true
scalafmtConfig in ThisBuild := Some(file("project/scalafmt.conf"))
scalafmtOnCompile in ThisBuild := true