forked from krasserm/streamz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
25 lines (15 loc) · 892 Bytes
/
build.sbt
File metadata and controls
25 lines (15 loc) · 892 Bytes
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 := "streamz"
organization in ThisBuild := "com.github.krasserm"
version in ThisBuild := "0.2-SNAPSHOT"
scalaVersion in ThisBuild := "2.11.2"
resolvers in ThisBuild += "Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases"
scalacOptions in ThisBuild ++= Seq("-feature", "-language:higherKinds", "-language:implicitConversions")
libraryDependencies in ThisBuild ++= Seq(
"org.scalaz.stream" %% "scalaz-stream" % Version.ScalazStream,
"com.typesafe.akka" %% "akka-testkit" % Version.Akka % "test",
"org.scalatest" %% "scalatest" % Version.Scalatest % "test"
)
lazy val root = project.in(file(".")).aggregate(akkaCamel, akkaPersistence, akkaStream)
lazy val akkaCamel = project.in(file("streamz-akka-camel"))
lazy val akkaPersistence = project.in(file("streamz-akka-persistence"))
lazy val akkaStream = project.in(file("streamz-akka-stream"))