forked from lemastero/scala_typeclassopedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
33 lines (22 loc) · 1.1 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
name := "scala_typeclassopedia"
version := "0.0.1"
scalaVersion := "2.12.6"
mainClass := Some("coyoneda.SimpleImpl")
val catsVersion = "2.0.0"
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % catsVersion withSources() withJavadoc(),
"org.typelevel" %% "cats-free" % catsVersion withSources() withJavadoc(),
"org.typelevel" %% "cats-laws" % catsVersion withSources() withJavadoc(),
"org.typelevel" %% "alleycats-core" % catsVersion withSources() withJavadoc(),
"org.typelevel" %% "cats-mtl-core" % "0.7.0" withSources() withJavadoc(),
"org.typelevel" %% "cats-mtl-laws" % "0.7.0" withSources() withJavadoc(),
"org.typelevel" %% "cats-effect" % "2.0.0" withSources() withJavadoc(),
"org.scalaz" %% "scalaz-core" % "7.3.0-M31" withSources() withJavadoc(),
"com.slamdata" %% "matryoshka-core" % "0.21.3" withSources() withJavadoc(),
"org.scalatest" %% "scalatest" % "3.0.8" % Test
)
scalacOptions ++= Seq(
"-encoding", "UTF-8"
)
addCompilerPlugin("org.scalamacros" %% "paradise" % "2.1.1" cross CrossVersion.full)
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.10.3")