-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
76 lines (61 loc) · 2.51 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/***************************************************************
* THIS IS A GENERATED FILE - EDIT AT YOUR OWN RISK *
**************************************************************
*
* Use the mainadm command to generate a new version of
* this build file.
*
* See https://github.com/lightbend/course-management-tools
* for more details
*
*/
import sbt._
Global / onChangedBuildSource := ReloadOnSourceChanges
lazy val `akka_streams_echo` = (project in file("."))
.aggregate(
common,
`exercise_000_initial_state`,
`exercise_001_implement_a_delay_element`,
`exercise_002_implement_fir_manually`,
`exercise_003_implement_fir_streamlined`,
`exercise_004_implement_iir`,
`exercise_005_chain_fir_and_fir`,
`exercise_006_chain_iir_and_fir_cancel_echo`,
`exercise_007_check_diff`,
`exercise_008_vco`,
`exercise_009_matching_streams_speeds`
)
.settings(ThisBuild / scalaVersion := Version.scalaVersion)
.settings(CommonSettings.commonSettings: _*)
lazy val common = project
.settings(CommonSettings.commonSettings: _*)
lazy val `exercise_000_initial_state` = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")
lazy val `exercise_001_implement_a_delay_element` = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")
lazy val `exercise_002_implement_fir_manually` = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")
lazy val `exercise_003_implement_fir_streamlined` = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")
lazy val `exercise_004_implement_iir` = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")
lazy val `exercise_005_chain_fir_and_fir` = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")
lazy val `exercise_006_chain_iir_and_fir_cancel_echo` = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")
lazy val `exercise_007_check_diff` = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")
lazy val `exercise_008_vco` = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")
lazy val `exercise_009_matching_streams_speeds` = project
.configure(CommonSettings.configure)
.dependsOn(common % "test->test;compile->compile")