-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
50 lines (42 loc) · 2.17 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
name := "forex"
version := "1.0.0"
scalaVersion := "2.12.4"
scalacOptions ++= Seq(
"-deprecation",
"-encoding",
"UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-Ypartial-unification",
"-language:experimental.macros",
"-language:implicitConversions"
)
resolvers +=
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
libraryDependencies ++= Seq(
"com.github.pureconfig" %% "pureconfig" % "0.7.2",
"com.softwaremill.quicklens" %% "quicklens" % "1.4.11",
"com.typesafe.akka" %% "akka-actor" % "2.4.19",
"com.typesafe.akka" %% "akka-http" % "10.0.10",
"de.heikoseeberger" %% "akka-http-circe" % "1.18.1",
"io.circe" %% "circe-core" % "0.8.0",
"io.circe" %% "circe-generic" % "0.8.0",
"io.circe" %% "circe-generic-extras" % "0.8.0",
"io.circe" %% "circe-java8" % "0.8.0",
"io.circe" %% "circe-jawn" % "0.8.0",
"org.atnos" %% "eff" % "4.5.0",
"org.atnos" %% "eff-monix" % "4.5.0",
"org.atnos" %% "eff-fs2" % "4.5.0",
"com.softwaremill.sttp" %% "core" % "1.0.6",
"com.softwaremill.sttp" %% "circe" % "1.0.6",
"com.softwaremill.sttp" %% "async-http-client-backend-monix" % "1.0.6",
"org.typelevel" %% "cats-core" % "0.9.0",
"org.zalando" %% "grafter" % "2.3.0",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.7.2",
"org.scalatest" %% "scalatest" % "3.0.5" % "test",
"com.github.tomakehurst" % "wiremock" % "2.12.0" % "test",
compilerPlugin("org.spire-math" %% "kind-projector" % "0.9.4"),
compilerPlugin("org.scalamacros" %% "paradise" % "2.1.1" cross CrossVersion.full)
)