-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsettings.gradle.kts
79 lines (68 loc) · 1.79 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
import androidx.build.gradle.gcpbuildcache.GcpBuildCache
import androidx.build.gradle.gcpbuildcache.GcpBuildCacheServiceFactory
buildscript {
dependencies {
classpath("org.ow2.asm:asm:9.7.1")?.run {
because("com.google.cloud.tools.jib uses older versions of asm")
}
}
}
pluginManagement.repositories {
includeBuild("build-plugins")
includeBuild("fused-properties")
gradlePluginPortal()
google()
mavenCentral()
}
dependencyResolutionManagement.repositories {
google()
mavenCentral()
}
plugins {
id("androidx.build.gradle.gcpbuildcache") version "1.0.0"
id("com.google.cloud.tools.jib") version "3.4.4" apply false
id("com.gradle.develocity") version "3.19"
}
buildCache {
registerBuildCacheService(GcpBuildCache::class, GcpBuildCacheServiceFactory::class)
remote(GcpBuildCache::class) {
bucketName = "playground-build-cache"
projectId = "playground-1a136"
isPush = true
}
}
develocity.buildScan {
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(
":analytics",
":app-check:app-check-client",
":app-check:app-check-common",
":app-check:app-check-sdk",
":asg-service",
":cloud-run",
":composeApp",
":compose-material",
":conferences-app",
":http-client",
":http-common",
":identity-manager",
":key-navigation",
":kotlin-delegates",
":kotlin-gb",
":map-routes",
":maps-routing",
":nsd-manager",
":paging-compose",
":parcelable-support",
":placeholder-highlight",
":platform-scaffold",
":platform-support",
":remote-config",
":sql-common",
":sql-compose",
":sql-driver",
)
rootProject.name = "playground"