-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsettings.gradle.kts
73 lines (63 loc) · 1.7 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
import androidx.build.gradle.gcpbuildcache.GcpBuildCache
import androidx.build.gradle.gcpbuildcache.GcpBuildCacheServiceFactory
pluginManagement.repositories {
gradlePluginPortal()
google()
mavenCentral()
}
@Suppress("UnstableApiUsage")
dependencyResolutionManagement.repositories {
// repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
google()
mavenCentral()
}
plugins {
id("androidx.build.gradle.gcpbuildcache") version "1.0.0-beta05"
id("com.google.cloud.tools.jib") version "3.4.0" apply false
id("com.gradle.enterprise") version "3.15.1"
}
buildCache {
registerBuildCacheService(GcpBuildCache::class, GcpBuildCacheServiceFactory::class)
remote(GcpBuildCache::class) {
bucketName = "playground-build-cache"
projectId = "playground-1a136"
isPush = true
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlways()
}
}
include(
":app-check:app-check-client",
":app-check:app-check-common",
":app-check:app-check-sdk",
":app-launcher:android",
":app-launcher:common",
":app-launcher:desktop",
":cloud-firestore",
":cloud-run",
":compose-cli",
":dominion-app",
":events-aggregator",
":events-app",
":firebase-compose",
":gallery-app",
":http-client",
":image-loader",
":kotlin-gb",
":local-storage",
":micro-yaml",
":notion-client",
":nsd-manager",
":notion-console",
":parcelable-support",
":platform-support",
":sql-driver",
)
includeBuild("build-plugins")
rootProject.name = "playground"