-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
45 lines (43 loc) · 1.65 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
val Http4sVersion = "0.20.8"
val CirceVersion = "0.11.1"
val Specs2Version = "4.1.0"
val LogbackVersion = "1.2.3"
val catsVersion = "1.6.1"
val catsEffectVersion = "1.3.1"
val pureConfigVersion = "0.11.1"
val monixVersion = "3.1.0"
val scalaTestVersion = "3.1.0"
val wireMockVersion = "2.25.1"
lazy val root = (project in file("."))
.settings(
organization := "com.example",
name := "github_ranking",
version := "0.0.1-SNAPSHOT",
scalaVersion := "2.12.8",
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-blaze-server" % Http4sVersion,
"org.http4s" %% "http4s-blaze-client" % Http4sVersion,
"org.http4s" %% "http4s-circe" % Http4sVersion,
"org.http4s" %% "http4s-dsl" % Http4sVersion,
"io.circe" %% "circe-generic" % CirceVersion,
"org.specs2" %% "specs2-core" % Specs2Version % "test",
"ch.qos.logback" % "logback-classic" % LogbackVersion,
"org.typelevel" %% "cats-effect" % catsEffectVersion,
"org.typelevel" %% "cats-core" % catsVersion,
"com.github.pureconfig" %% "pureconfig" % pureConfigVersion,
"io.monix" %% "monix" % monixVersion,
"org.scalatest" %% "scalatest" % scalaTestVersion,
"com.github.tomakehurst" % "wiremock" % wireMockVersion % Test
),
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.10.3"),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.0")
)
scalacOptions ++= Seq(
"-deprecation",
"-encoding", "UTF-8",
"-language:higherKinds",
"-language:postfixOps",
"-feature",
"-Ypartial-unification",
"-Xfatal-warnings",
)