-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
30 lines (22 loc) · 1.07 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
name := """ClosureSystemUpdate"""
version := "2.0"
lazy val root = project in file(".")
scalaVersion := "2.12.3"
mainClass in (Compile, run) := Some("examples.LaRochelleExample")
scalacOptions ++= Seq(
"-encoding", "UTF-8", // source files are in UTF-8
"-deprecation", // warn about use of deprecated APIs
"-unchecked", // warn about unchecked type parameters
"-feature", // warn about misused language features
"-language:higherKinds",// allow higher kinded types without `import scala.language.higherKinds`
"-Xlint", // enable handy linter warnings
//"-Xfatal-warnings", // turn compiler warnings into errors
"-Ypartial-unification" // allow the compiler to unify type constructors of different arities
)
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.3")
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.4" % "test",
"org.slf4j" % "slf4j-jdk14" % "1.8.0-alpha2",
"org.typelevel" %% "cats-core" % "1.0.0"
)
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"