-
Notifications
You must be signed in to change notification settings - Fork 101
/
settings.gradle.kts
80 lines (74 loc) · 2.23 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
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
77
78
79
80
rootProject.name = "workflow"
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
google()
// For binary compatibility validator.
maven { url = uri("https://kotlin.bintray.com/kotlinx") }
}
includeBuild("build-logic")
}
plugins {
id("com.gradle.enterprise") version "3.16.2"
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
repositories {
mavenCentral()
google()
// See androidx.dev (can use this for Snapshot builds of AndroidX)
// maven { url = java.net.URI.create("https://androidx.dev/snapshots/builds/8224905/artifacts/repository") }
}
}
include(
":benchmarks:dungeon-benchmark",
":benchmarks:performance-poetry:complex-benchmark",
":benchmarks:performance-poetry:complex-poetry",
":internal-testing-utils",
":samples:compose-samples",
":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:nested-overlays",
":samples:stub-visibility",
":samples:tictactoe:app",
":samples:tictactoe:common",
":samples:todo-android:app",
":trace-encoder",
":workflow-config:config-android",
":workflow-config:config-jvm",
":workflow-core",
":workflow-runtime",
":workflow-rx2",
":workflow-testing",
":workflow-tracing",
":workflow-ui:compose",
":workflow-ui:compose-tooling",
":workflow-ui:core-common",
":workflow-ui:core-android",
":workflow-ui:internal-testing-android",
":workflow-ui:internal-testing-compose",
":workflow-ui:radiography"
)
// Include the tutorial build so the IDE sees it when syncing the main project.
includeBuild("samples/tutorial")