-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
33 lines (21 loc) · 852 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
name := "contravariant_profunctor_exercises"
version := "0.0.1"
scalaVersion := "2.13.1"
lazy val catsVersion = "2.1.1"
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % catsVersion withSources(),
"org.typelevel" %% "cats-laws" % catsVersion withSources(),
"io.monix" %% "monix" % "3.1.0" withSources(),
"dev.zio" %% "zio" % "1.0.0-RC18-1" withSources(),
"org.scalaz" %% "scalaz-core" % "7.3.0-M32" withSources(),
"org.scalatest" %% "scalatest" % "3.1.1" % Test
)
scalacOptions ++= Seq(
"-encoding", "UTF-8"
)
wartremoverErrors ++= Warts.allBut(Wart.NonUnitStatements)
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.11.0" cross CrossVersion.full)
addCommandAlias(name = "ca", "compile;test:compile")
addCommandAlias(name = "t", "test")
addCommandAlias("cat", "ca;t")
addCommandAlias("ncat", "~cat")