-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (23 loc) · 1.08 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
import sbt.Resolver
name := "free-monad-app"
version := "0.0.1-SNAPSHOT"
scalaVersion := "2.12.8"
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
//"-Xlint", // enable handy linter warnings
"-Ypartial-unification" // allow the compiler to unify type constructors of different arities
//"-language:higherKinds",// allow higher kinded types without `import scala.language.higherKinds`
// "-Xfatal-warnings", // turn compiler warnings into errors
)
resolvers += Resolver.sonatypeRepo("releases")
resolvers += Resolver.bintrayRepo("projectseptemberinc", "maven")
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "1.1.0",
"org.typelevel" %% "cats-free" % "1.1.0",
"com.projectseptember" %% "freek" % "0.6.7"
// "com.milessabin" %% "si2712fix-plugin" % "1.2.0"
)
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.7")