aboutsummaryrefslogtreecommitdiff
path: root/project/Dependencies.scala
blob: 5994dd65bcdd2629eaa259dd7661da4c9b09787d (plain) (blame)
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
package mavigator

import sbt._
import sbt.Keys._
import org.scalajs.sbtplugin.ScalaJSPlugin.autoImport._

object Dependencies {

  val AkkaVersion = "2.4.2-RC1"

  val akkaActor = "com.typesafe.akka" %% "akka-actor" % AkkaVersion
  val akkaHttp = "com.typesafe.akka" %% "akka-http-experimental" % AkkaVersion
  val akkaHttpCore = "com.typesafe.akka" %% "akka-http-core" % AkkaVersion
  val akkaStream = "com.typesafe.akka" %% "akka-stream" % AkkaVersion

  val reactiveStreams = "org.reactivestreams" % "reactive-streams" % "1.0.0"

  val flow = "com.github.jodersky" %% "flow" % "2.4.0"
  val flowNative = "com.github.jodersky" % "flow-native" % "2.4.0" % Runtime

  val jsDom = Def.setting{"org.scala-js" %%% "scalajs-dom" % "0.8.2"}
  val scalatags = Def.setting{"com.lihaoyi" %%% "scalatags" % "0.5.4"}
  val scalarx = Def.setting{"com.scalarx" %% "scalarx" % "0.3.0"}

}