-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
31 lines (23 loc) · 1023 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
val scala3Version = "3.2.2"
val ZioVersion = "2.0.10"
lazy val root = project
.in(file("."))
.settings(
name := "fpScala3_Uno",
version := "0.1.0-SNAPSHOT",
scalaVersion := scala3Version,
scalacOptions += "-rewrite",
scalacOptions := Seq("-Xmax-inlines", "140"),
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test,
libraryDependencies += "dev.zio" %% "zio" % ZioVersion,
libraryDependencies += "dev.zio" %% "zio-streams" % ZioVersion,
libraryDependencies += "dev.zio" %% "zio-prelude" % "1.0.0-RC5",
libraryDependencies ++= Seq(
"org.tpolecat" %% "doobie-core",
"org.tpolecat" %% "doobie-postgres",
"org.tpolecat" %% "doobie-hikari"
).map(_ % "0.13.4"),
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.14" % Test,
libraryDependencies += "org.scalatest" %% "scalatest-funspec" % "3.2.14" % Test,
Compile / packageDoc / mappings := Seq()
)