aboutsummaryrefslogtreecommitdiff
path: root/project/Dependencies.scala
blob: f02b03918b14b3f92878746249677bb3b6827119 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package flow

import sbt._

object Dependencies {

  val akkaActor = "com.typesafe.akka" %% "akka-actor" % "2.4.14"
  val akkaStream ="com.typesafe.akka" %% "akka-stream" % "2.4.14"

  val akkaTestKit = "com.typesafe.akka" %% "akka-testkit" % "2.4.14" % "test"
  val scalatest = "org.scalatest" %% "scalatest" % "3.0.1" % "test"

}