xref: /aosp_15_r20/external/robolectric/settings.gradle.kts (revision e6ba16074e6af37d123cb567d575f496bf0a58ee)

<lambda>null1 pluginManagement {
2   repositories {
3     gradlePluginPortal()
4     google()
5     mavenCentral()
6   }
7 }
8 
<lambda>null9 dependencyResolutionManagement {
10   repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
11 
12   repositories {
13     google()
14     mavenCentral()
15   }
16 }
17 
18 rootProject.name = "robolectric"
19 
20 include(
21   ":robolectric",
22   ":sandbox",
23   ":junit",
24   ":utils",
25   ":utils:reflector",
26   ":pluginapi",
27   ":plugins:maven-dependency-resolver",
28   ":preinstrumented",
29   ":processor",
30   ":resources",
31   ":annotations",
32   ":shadows:framework",
33   ":shadows:httpclient",
34   ":shadows:multidex",
35   ":shadows:playservices",
36   ":shadowapi",
37   ":errorprone",
38   ":nativeruntime",
39   ":integration_tests:agp",
40   ":integration_tests:agp:testsupport",
41   ":integration_tests:dependency-on-stubs",
42   ":integration_tests:kotlin",
43   ":integration_tests:libphonenumber",
44   ":integration_tests:memoryleaks",
45   ":integration_tests:mockito",
46   ":integration_tests:mockito-kotlin",
47   ":integration_tests:mockito-experimental",
48   ":integration_tests:powermock",
49   ":integration_tests:roborazzi",
50   ":integration_tests:androidx",
51   ":integration_tests:androidx_test",
52   ":integration_tests:ctesque",
53   ":integration_tests:security-providers",
54   ":integration_tests:mockk",
55   ":integration_tests:jacoco-offline",
56   ":integration_tests:sdkcompat",
57   ":integration_tests:multidex",
58   ":integration_tests:play_services",
59   ":integration_tests:sparsearray",
60   ":integration_tests:nativegraphics",
61   ":integration_tests:room",
62   ":integration_tests:versioning",
63   ":testapp",
64 )
65