-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
67 lines (63 loc) · 1.6 KB
/
settings.gradle.kts
File metadata and controls
67 lines (63 loc) · 1.6 KB
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
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
repositories {
google()
mavenCentral()
}
}
rootProject.name = "robolectric"
include(
":annotations",
":errorprone",
":integration_tests:androidx",
":integration_tests:androidx_test",
":integration_tests:composeui",
":integration_tests:ctesque",
":integration_tests:dependency-on-stubs",
":integration_tests:jacoco-offline",
":integration_tests:junit-vintage-engine",
":integration_tests:kotlin",
":integration_tests:libphonenumber",
":integration_tests:memoryleaks",
":integration_tests:mockito",
":integration_tests:mockito-experimental",
":integration_tests:mockito-kotlin",
":integration_tests:mockk",
":integration_tests:nativegraphics",
":integration_tests:play_services",
":integration_tests:powermock",
":integration_tests:rap",
":integration_tests:rap-kotlin",
":integration_tests:roborazzi",
":integration_tests:room",
":integration_tests:sdkcompat",
":integration_tests:securityproviders",
":integration_tests:sparsearray",
":integration_tests:testparameterinjector",
":integration_tests:versioning",
":junit",
":nativeruntime",
":pluginapi",
":plugins:maven-dependency-resolver",
":preinstrumented",
":processor",
":resources",
":robolectric",
":sandbox",
":shadowapi",
":shadows:framework",
":shadows:httpclient",
":simulator",
":simulator-gradle-plugin",
":testapp",
":utils",
":utils:reflector",
)