forked from square/workflow-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
51 lines (47 loc) · 1.59 KB
/
settings.gradle.kts
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
import de.fayard.dependencies.bootstrapRefreshVersionsAndDependencies
rootProject.name = "workflow"
include(
":internal-testing-utils",
":samples:containers:app-poetry",
":samples:containers:app-raven",
":samples:containers:android",
":samples:containers:common",
":samples:containers:hello-back-button",
":samples:containers:poetry",
":samples:dungeon:app",
":samples:dungeon:common",
":samples:dungeon:timemachine",
":samples:dungeon:timemachine-shakeable",
":samples:hello-terminal:hello-terminal-app",
":samples:hello-terminal:terminal-workflow",
":samples:hello-terminal:todo-terminal-app",
":samples:hello-workflow",
":samples:hello-workflow-fragment",
":samples:stub-visibility",
":samples:tictactoe:app",
":samples:tictactoe:common",
":samples:todo-android:app",
":samples:todo-android:common",
":trace-encoder",
":workflow-core",
":workflow-runtime",
":workflow-rx2",
":workflow-testing",
":workflow-tracing",
":workflow-ui:backstack-common",
":workflow-ui:backstack-android",
":workflow-ui:compose",
":workflow-ui:core-common",
":workflow-ui:core-android",
":workflow-ui:internal-testing-android",
":workflow-ui:modal-common",
":workflow-ui:modal-android"
)
// Include the tutorial build so the IDE sees it when syncing the main project.
includeBuild("samples/tutorial")
buildscript {
repositories { gradlePluginPortal() }
// See https://github.com/jmfayard/refreshVersions
dependencies.classpath("de.fayard:dependencies:0.5.8")
}
bootstrapRefreshVersionsAndDependencies()