-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
40 lines (31 loc) · 950 Bytes
/
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
name := "nous"
version := "2.0.0"
scalaVersion := "2.11.8"
resolvers += Resolver.sonatypeRepo("releases")
resolvers += "bintray/non" at "http://dl.bintray.com/non/maven"
addCompilerPlugin("org.spire-math" % "kind-projector_2.11" % "0.8.0")
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full)
scalacOptions ++= Seq(
"-Xfatal-warnings",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard",
"-encoding", "UTF-8",
"-feature",
"-language:higherKinds",
"-language:postfixOps",
"-language:implicitConversions",
"-deprecation",
"-unchecked",
"-Xcheckinit",
"-Xlint",
"-Xverify",
"-Xfuture",
"-Yclosure-elim",
"-Yinline",
"-Yno-adapted-args")
libraryDependencies ++= Seq(
"com.github.mpilquist" %% "simulacrum" % "0.7.0",
"org.scalacheck" %% "scalacheck" % "1.13.0",
"org.scalatest" %% "scalatest" % "3.0.0" % "test",
"org.typelevel" %% "discipline" % "0.5")