-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
46 lines (45 loc) · 1.7 KB
/
build.sbt
File metadata and controls
46 lines (45 loc) · 1.7 KB
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
40
41
42
43
44
45
46
lazy val CatsEffectVersion = "1.2.0"
lazy val Fs2Version = "1.0.3"
lazy val Http4sVersion = "0.20.0-RC1"
lazy val CirceVersion = "0.11.1"
lazy val DoobieVersion = "0.6.0"
lazy val H2Version = "1.4.196"
lazy val FlywayVersion = "5.0.5"
lazy val LogbackVersion = "1.2.3"
lazy val ScalaTestVersion = "3.0.7"
lazy val ScalaCheckVersion = "1.13.4"
lazy val root = (project in file("."))
.settings(
organization := "org.typelevel.stack",
name := "typelevel-stack-quickstart",
version := "0.0.1-SNAPSHOT",
scalaVersion := "2.12.8",
scalacOptions := Seq(
"-deprecation",
"-encoding",
"UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-Ypartial-unification"
),
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % CatsEffectVersion,
"org.typelevel" %% "cats-laws" % CatsEffectVersion,
"co.fs2" %% "fs2-core" % Fs2Version,
"org.http4s" %% "http4s-blaze-server" % Http4sVersion,
"org.http4s" %% "http4s-circe" % Http4sVersion,
"org.http4s" %% "http4s-dsl" % Http4sVersion,
"io.circe" %% "circe-core" % CirceVersion,
"io.circe" %% "circe-generic" % CirceVersion,
"com.h2database" % "h2" % H2Version,
"org.flywaydb" % "flyway-core" % FlywayVersion,
"org.tpolecat" %% "doobie-core" % DoobieVersion,
"org.tpolecat" %% "doobie-postgres" % DoobieVersion,
"org.tpolecat" %% "doobie-h2" % DoobieVersion,
"ch.qos.logback" % "logback-classic" % LogbackVersion,
"org.scalatest" %% "scalatest" % ScalaTestVersion % Test,
"org.scalacheck" %% "scalacheck" % ScalaCheckVersion % Test,
"org.tpolecat" %% "doobie-scalatest" % DoobieVersion % Test
)
)