forked from RayRoestenburg/akka-in-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
35 lines (18 loc) · 1000 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
26
27
28
29
30
31
32
33
34
35
name := "all"
version := "1.0"
organization := "com.manning"
lazy val channels = project.in(file("chapter-channels"))
lazy val cluster = project.in(file("chapter-cluster"))
lazy val conf = project.in(file("chapter-conf-deploy"))
lazy val fault = project.in(file("chapter-fault-tolerance"))
lazy val futures = project.in(file("chapter-futures"))
lazy val integration = project.in(file("chapter-integration"))
lazy val looking = project.in(file("chapter-looking-ahead"))
lazy val persistence = project.in(file("chapter-persistence"))
lazy val remoting = project.in(file("chapter-remoting"))
lazy val routing = project.in(file("chapter-routing"))
lazy val state = project.in(file("chapter-state"))
lazy val stream = project.in(file("chapter-stream"))
lazy val structure = project.in(file("chapter-structure"))
lazy val test = project.in(file("chapter-testdriven"))
lazy val up = project.in(file("chapter-up-and-running"))