Revision 5777d66448f1ccb737e69bedae5f8f8073e562b7 authored by Mihai Surdeanu on 12 September 2020, 03:31:13 UTC, committed by GitHub on 12 September 2020, 03:31:13 UTC
2 parent s 577e94f + b36a0a2
Raw File
build.sbt
name := "reach-export"

resolvers += Resolver.bintrayRepo("hseeberger", "maven")

libraryDependencies ++= {
  val akkaV = "2.5.4"
  val akkaHTTPV = "10.0.9"
  val json4sV = "3.5.2"

  Seq(
    "com.typesafe"         %  "config"             % "1.3.1",
    "org.json4s"          %%  "json4s-native"      % json4sV,
    "org.json4s"          %%  "json4s-jackson"     % json4sV,

    // akka
    "com.typesafe.akka"   %%  "akka-actor"         % akkaV,
    "com.typesafe.akka"   %%  "akka-stream"        % akkaV,
    "com.typesafe.akka"   %%  "akka-slf4j"         % akkaV,

    // akka-http
    "com.typesafe.akka"   %%  "akka-http"          % akkaHTTPV,
    "com.typesafe.akka"   %%  "akka-http-core"     % akkaHTTPV,
    "com.typesafe.akka"   %%  "akka-http-xml"      % akkaHTTPV,
    "de.heikoseeberger"   %%  "akka-http-json4s"   % "1.17.0",

    // logging
    "com.typesafe.scala-logging"  %%  "scala-logging"    % "3.7.2",
    "ch.qos.logback"               %  "logback-classic"  % "1.0.10",
    "org.slf4j"                    %  "slf4j-api"        % "1.7.10",

    // testing
    "org.scalatest"       %%  "scalatest"          % "3.0.1"    % "test",
    "com.typesafe.akka"   %%  "akka-testkit"       % akkaV      % "test",
    "com.typesafe.akka"   %%  "akka-http-testkit"  % akkaHTTPV  % "test"
  )

}
back to top