-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
96 lines (72 loc) · 2.26 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name := "edm-message-service-producer-api"
version := "0.1"
scalaVersion := "2.12.8"
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.8")
scalacOptions ++= Seq(
"-Ypartial-unification",
"-language:higherKinds",
"-deprecation",
"-encoding", "utf-8",
"-explaintypes",
"-feature",
"-language:existentials",
"-language:implicitConversions",
"-unchecked",
"-Xfatal-warnings",
"-Xlint:infer-any",
"-Xlint:type-parameter-shadow",
"-Xlint:unsound-match",
"-Ywarn-dead-code",
"-Ywarn-extra-implicit",
"-Ywarn-inaccessible",
"-Ywarn-infer-any",
"-Ywarn-unused:implicits",
"-Ywarn-unused:imports",
"-Ywarn-unused:locals",
"-Ywarn-unused:params",
"-Ywarn-unused:patvars",
"-Ywarn-unused:privates",
"-Ywarn-value-discard"
)
lazy val zioVersion = "1.0-RC4"
lazy val http4sVersion = "0.20.0-RC1"
lazy val fs2Version = "1.0.4"
lazy val circeVersion = "0.11.1"
lazy val pureConfigVersion = "0.10.2"
lazy val sttpVersion = "1.5.15"
lazy val fuuidVersion = "0.2.0-M8"
lazy val scalaTestVersion = "3.0.0"
lazy val alpakkaVersion = "1.0.0"
// Dependencies
libraryDependencies ++= Seq(
"org.scalaz" %% "scalaz-zio",
"org.scalaz" %% "scalaz-zio-interop-shared",
"org.scalaz" %% "scalaz-zio-interop-cats"
).map(_ % zioVersion)
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-dsl",
"org.http4s" %% "http4s-circe",
"org.http4s" %% "http4s-blaze-server"
).map(_ % http4sVersion)
libraryDependencies ++= Seq(
"co.fs2" %% "fs2-core",
"co.fs2" %% "fs2-io"
).map(_ % fs2Version)
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-generic-extras",
"io.circe" %% "circe-parser"
).map(_ % circeVersion)
libraryDependencies ++= Seq(
"com.github.pureconfig" %% "pureconfig",
"com.github.pureconfig" %% "pureconfig-yaml"
).map(_ % pureConfigVersion)
libraryDependencies ++= Seq(
"com.softwaremill.sttp" %% "core",
"com.softwaremill.sttp" %% "circe",
"com.softwaremill.sttp" %% "async-http-client-backend-zio"
).map(_ % sttpVersion)
libraryDependencies += "io.chrisdavenport" %% "fuuid" % fuuidVersion
libraryDependencies += "com.lightbend.akka" %% "akka-stream-alpakka-sns" % alpakkaVersion
libraryDependencies += "org.scalatest" %% "scalatest" % scalaTestVersion