-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
92 lines (68 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
name := "edm-message-service-consumer"
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 circeVersion = "0.11.1"
lazy val pureConfigVersion = "0.10.2"
lazy val doobieVersion = "0.7.0-M5"
lazy val doobiePostgresVersion = "0.6.0"
lazy val doobieContribPostgresVersion = "0.3.0a"
lazy val zioSqsVersion = "0.1.1"
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(
"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 += "org.tpolecat" % "doobie-core_2.12" % doobieVersion
libraryDependencies += "org.tpolecat" %% "doobie-postgres" % doobiePostgresVersion
libraryDependencies += "org.postgresql" % "postgresql" % "42.2.5"
libraryDependencies += "dev.zio" %% "zio-sqs" % zioSqsVersion
libraryDependencies += "io.chrisdavenport" %% "fuuid" % fuuidVersion
libraryDependencies += "org.scalatest" %% "scalatest" % scalaTestVersion