forked from brasil-em-numeros/pdt-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
36 lines (31 loc) · 865 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
import Dependencies.Libraries._
resolvers += Resolver.sonatypeRepo("releases")
resolvers += Resolver.sonatypeRepo("snapshots")
lazy val root = (project in file("."))
.settings(
organization := "juliano",
name := "pdt-client",
version := "0.0.1",
scalaVersion := "2.13.1",
maxErrors := 3,
libraryDependencies ++= Seq(
zio,
zioStreams,
zioInteropCats,
zioLogging,
http4sDsl,
http4sClient,
http4sCirce,
circeCore,
circeGeneric,
circeParser,
logback,
zioTestSbt
),
testFrameworks := Seq(new TestFramework("zio.test.sbt.ZTestFramework"))
)
scalacOptions --= Seq(
"-Xfatal-warnings"
)
addCommandAlias("fmt", "all scalafmtSbt scalafmt test:scalafmt")
addCommandAlias("chk", "all scalafmtSbtCheck scalafmtCheck test:scalafmtCheck")