-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
25 lines (21 loc) · 855 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
name := "oanda-scala-api"
version := "1.0"
scalaVersion := "2.12.3"
libraryDependencies ++= Seq(
"org.apache.httpcomponents" % "httpclient" % "4.5.3",
"org.apache.httpcomponents" % "fluent-hc" % "4.5.3",
"org.json4s" % "json4s-native_2.12" % "3.5.2",
"org.json4s" % "json4s-jackson_2.12" % "3.5.2",
"org.json4s" % "json4s-ext_2.12" % "3.5.2",
"joda-time" % "joda-time" % "2.9.9",
"org.scalatest" % "scalatest_2.12" % "3.0.3" % "test",
"net.sourceforge.htmlunit" % "htmlunit" % "2.27",
"org.scalaz" % "scalaz-core_2.12" % "7.2.13",
"com.typesafe.akka" % "akka-actor_2.12" % "2.5.3"
)
libraryDependencies ++= Seq(
"com.typesafe.akka" % "akka-actor_2.12" % "2.5.3",
"com.typesafe.akka" % "akka-stream_2.12" % "2.5.3",
"com.typesafe.akka" % "akka-http_2.12" % "10.0.8",
"com.typesafe.akka" % "akka-http-core_2.12" % "10.0.8"
)