-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
40 lines (37 loc) · 1.72 KB
/
build.sbt
File metadata and controls
40 lines (37 loc) · 1.72 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
scalaVersion := "2.12.2"
name := "ReaderM"
organization := "io.github.alejandrome"
version := "1.0"
val circeVersion = "0.8.0"
val doobieVersion = "0.4.1"
val akkaHttpVersion = "10.0.9"
libraryDependencies ++= Seq(
"org.typelevel" %% "cats" % "0.9.0",
"org.scalatest" %% "scalatest" % "3.0.3" % "test",
"com.typesafe" % "config" % "1.3.1",
"org.tpolecat" %% "doobie-core-cats" % doobieVersion,
"org.tpolecat" %% "doobie-h2-cats" % doobieVersion,
"org.tpolecat" %% "doobie-hikari-cats" % doobieVersion,
"org.tpolecat" %% "doobie-postgres-cats" % doobieVersion,
"org.tpolecat" %% "doobie-scalatest-cats" % doobieVersion,
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"de.heikoseeberger" %% "akka-http-circe" % "1.17.0",
"com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion % "test"
)
scalacOptions ++= Seq(
"-encoding", "UTF-8",
"-feature",
"-deprecation",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-language:experimental.macros",
"-unchecked",
"-Xlint",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-value-discard"
)