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

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