-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.sbt
42 lines (38 loc) · 909 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
34
35
36
37
38
39
40
41
42
import Dependencies.Libraries._
resolvers += Resolver.sonatypeRepo("releases")
resolvers += Resolver.sonatypeRepo("snapshots")
lazy val root = (project in file("."))
.settings(
organization := "juliano",
name := "streaming-all-the-way",
version := "0.0.1",
scalaVersion := "2.13.2",
maxErrors := 3,
libraryDependencies ++= Seq(
zio,
zioStreams,
zioMacros,
zioInteropCats,
zioLogging,
http4sServer,
http4sDsl,
http4sClient,
http4sCirce,
circeCore,
circeGeneric,
circeParser,
quillJdbc,
doobieCore,
doobieQuill,
doobieH2,
pureConfig,
h2,
logback,
zioTestSbt
),
testFrameworks := Seq(new TestFramework("zio.test.sbt.ZTestFramework"))
)
scalacOptions ++= Seq(
//"-Xfatal-warnings",
"-Ymacro-annotations"
)