-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
29 lines (22 loc) · 728 Bytes
/
build.sbt
File metadata and controls
29 lines (22 loc) · 728 Bytes
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
name := "Expenses"
version := "0.1"
scalaVersion := "2.12.4"
scalacOptions ++= Seq(
"-feature",
"-Ypartial-unification",
"-language:higherKinds"
)
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.4"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % "test"
libraryDependencies += "org.typelevel" %% "squants" % "1.3.0"
libraryDependencies += "org.typelevel" %% "cats-core" % "1.0.1"
libraryDependencies ++= Seq(
"org.tpolecat" %% "doobie-core" % "0.5.3",
"org.tpolecat" %% "doobie-postgres" % "0.5.3"
)
val circeVersion = "0.9.3"
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser"
).map(_ % circeVersion)